Skip to content

Commit

Permalink
Add support for non-aura cost no life/mana while focused (PathOfBuild…
Browse files Browse the repository at this point in the history
  • Loading branch information
QuickStick123 authored and Dullson committed Dec 6, 2023
1 parent a7246ab commit d2c1ba8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Modules/ModParser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1697,6 +1697,10 @@ local specialModList = {
["removes all energy shield"] = { mod("EnergyShield", "MORE", -100) },
["skills cost life instead of mana"] = { flag("CostLifeInsteadOfMana") },
["skills reserve life instead of mana"] = { flag("BloodMagicReserved") },
["non%-aura skills cost no mana or life while focus?sed"] = {
mod("ManaCost", "MORE", -100, { type = "Condition", var = "Focused" }, { type = "SkillType", skillType = SkillType.Aura, neg = true }),
mod("LifeCost", "MORE", -100, { type = "Condition", var = "Focused" }, { type = "SkillType", skillType = SkillType.Aura, neg = true })
},
["spend life instead of mana for effects of skills"] = { },
["skills cost %+(%d+) rage"] = function(num) return { mod("RageCostBase", "BASE", num) } end,
["hits that deal elemental damage remove exposure to those elements and inflict exposure to other elements exposure inflicted this way applies (%-%d+)%% to resistances"] = function(num) return {
Expand Down

0 comments on commit d2c1ba8

Please sign in to comment.