Skip to content

Commit c212b10

Browse files
authored
Add support for "you and allies" Grip of Kulemak mods (#1440)
1 parent 66751a6 commit c212b10

2 files changed

Lines changed: 6 additions & 10 deletions

File tree

src/Data/ModCache.lua

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5590,15 +5590,11 @@ c["While on High Infernal Flame, you and Allies in your"]={nil,"While on High In
55905590
c["While on High Infernal Flame, you and Allies in your Presence Gain 50% of Damage as Fire Damage"]={nil,"While on High Infernal Flame, you and 50% of Damage as Fire Damage "}
55915591
c["While you are not on Low Mana, you and Allies in your Presence have Unholy Might"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}}},nil}
55925592
c["Withered you inflict has infinite Duration"]={nil,"Withered you inflict has infinite Duration "}
5593-
c["You and Allies in your Presence have +23% to Chaos Resistance"]={nil,"+23% to Chaos Resistance "}
5594-
c["You and Allies in your Presence have +23% to Chaos Resistance You and Allies in your Presence have 10% increased Cooldown Recovery Rate"]={nil,"+23% to Chaos Resistance You and Allies in your Presence have 10% increased Cooldown Recovery Rate "}
5595-
c["You and Allies in your Presence have 10% increased Cooldown Recovery Rate"]={nil,"10% increased Cooldown Recovery Rate "}
5596-
c["You and Allies in your Presence have 10% increased Cooldown Recovery Rate 30% increased Accuracy Rating against Enemies affected by Abyssal Wasting"]={nil,"10% increased Cooldown Recovery Rate 30% increased Accuracy Rating against Enemies affected by Abyssal Wasting "}
5597-
c["You and Allies in your Presence have 12% increased Attack Speed"]={nil,"12% increased Attack Speed "}
5598-
c["You and Allies in your Presence have 12% increased Cast Speed"]={nil,"12% increased Cast Speed "}
5599-
c["You and Allies in your Presence have 12% increased Cast Speed 30% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting"]={nil,"12% increased Cast Speed 30% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting "}
5600-
c["You and Allies in your Presence have 28% increased Accuracy Rating"]={nil,"28% increased Accuracy Rating "}
5601-
c["You and Allies in your Presence have 28% increased Accuracy Rating You and Allies in your Presence have 12% increased Attack Speed"]={nil,"28% increased Accuracy Rating You and Allies in your Presence have 12% increased Attack Speed "}
5593+
c["You and Allies in your Presence have +23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}}}},nil}
5594+
c["You and Allies in your Presence have 10% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}}}},nil}
5595+
c["You and Allies in your Presence have 12% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=12}}}},nil}
5596+
c["You and Allies in your Presence have 12% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=12}}}},nil}
5597+
c["You and Allies in your Presence have 28% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=28}}}},nil}
56025598
c["You are Blind"]={{[1]={[1]={neg=true,type="Condition",var="CannotBeBlinded"},flags=0,keywordFlags=0,name="Condition:Blinded",type="FLAG",value=true}},nil}
56035599
c["You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="BleedImmune",type="FLAG",value=true}},nil}
56045600
c["You are considered on Low Life while at 75% of maximum Life or below instead"]={{[1]={flags=0,keywordFlags=0,name="LowLifePercentage",type="BASE",value=0.75}},nil}

src/Modules/ModParser.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ local preFlagList = {
13461346
["^nearby allies [hgd][ae][via][enl] "] = { newAura = true, newAuraOnlyAllies = true },
13471347
["allies in your presence "] = { newAura = true, newAuraOnlyAllies = true },
13481348
["allies in your presence [hgd][ae][via][enl] "] = { newAura = true, newAuraOnlyAllies = true },
1349-
["^you and allies in your presence "] = { newAura = true },
1349+
["^you and allies in your presence [hgd][ae][via][enl] "] = { newAura = true },
13501350
["^every rage also grants "] = { tag = { type = "Multiplier", var = "RageEffect" } },
13511351
["^each rage also grants "] = { tag = { type = "Multiplier", var = "RageEffect" } },
13521352
["^you and allies affected by auras from your skills [hgd][ae][via][enl] "] = { tag = { type = "Condition", var = "AffectedByAura" } },

0 commit comments

Comments
 (0)