Skip to content

Commit 2fe7f25

Browse files
committed
Add parsing for War Bringer
1 parent d96b355 commit 2fe7f25

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Modules/ModParser-3_0.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1304,6 +1304,10 @@ local specialModList = {
13041304
["cannot be stunned while you have at least (%d+) rage"] = function(num) return { mod("AvoidStun", "BASE", 100, { type = "MultiplierThreshold", var = "Rage", threshold = 25 }) } end,
13051305
["lose ([%d%.]+)%% of life per second per rage while you are not losing rage"] = function(num) return { mod("LifeDegen", "BASE", 1, { type = "PercentStat", stat = "Life", percent = num }, { type = "Multiplier", var = "Rage", limit = 50 }) } end,
13061306
["if you've warcried recently, you and nearby allies have (%d+)%% increased attack speed"] = function(num) return { mod("ExtraAura", "LIST", { mod = mod("Speed", "INC", num, nil, ModFlag.Attack) }, { type = "Condition", var = "UsedWarcryRecently" }) } end,
1307+
["warcries grant (%d+) rage per (%d+) power if you have less than (%d+) rage"] = {
1308+
flag("Condition:CanGainRage"),
1309+
mod("Dummy", "DUMMY", 1, { type = "Condition", var = "CanGainRage" }), -- Make the Configuration option appear
1310+
},
13071311
-- Champion
13081312
["you have fortify"] = { flag("Condition:Fortify") },
13091313
["cannot be stunned while you have fortify"] = { mod("AvoidStun", "BASE", 100, { type = "Condition", var = "Fortify" }) },

0 commit comments

Comments
 (0)