Skip to content

Commit d0527be

Browse files
HeffUWires77
andauthored
Fixes #8612 Update Scold's Bridle self damage wording (#8618)
Co-authored-by: Wires77 <Wires77@users.noreply.github.com>
1 parent 293de26 commit d0527be

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/Data/ModCache.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11858,7 +11858,7 @@ c["Your Physical Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="Physical
1185811858
c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do "}
1185911859
c["Your Raised Spectres also gain Arcane Surge when you do 50% increased Critical Strike Chance for Spells per Raised Spectre"]={nil,"Your Raised Spectres also gain Arcane Surge when you do 50% increased Critical Strike Chance for Spells per Raised Spectre "}
1186011860
c["Your Raised Zombies count as Corpses"]={nil,"Your Raised Zombies count as Corpses "}
11861-
c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ScoldsBridleSelfDamage",type="LIST",value={damageType="physical",dmgMult=400}}},nil}
11861+
c["Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ScoldsBridleSelfDamage",type="LIST",value={damageType="physical",dmgMult=400}}},nil}
1186211862
c["Your Spells are disabled"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ForceEnableCurseApplication",type="FLAG",value=true}},nil}
1186311863
c["Your Spells have Culling Strike"]={{[1]={flags=2,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil}
1186411864
c["Your Warcries do not grant Buffs or Charges to You"]={{[1]={flags=0,keywordFlags=0,name="CannotGainWarcryBuffs",type="FLAG",value=true}},nil}

src/Data/Uniques/helmet.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ Requires Level 65, 138 Int
692692
(80-100)% increased Spell Damage
693693
15% reduced Cast Speed
694694
+(30-60) to maximum Mana
695-
Your Skills deal you 400% of Mana Cost as Physical Damage
695+
Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage
696696
]],[[
697697
Sudden Dawn
698698
Steel Circlet

src/Modules/ModParser.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2914,6 +2914,9 @@ local specialModList = {
29142914
["your skills deal you (%d+)%% of mana cost as (.+) damage"] = function(dmgMult, _, dmgType) return {
29152915
mod("ScoldsBridleSelfDamage", "LIST", {dmgMult = dmgMult, damageType = dmgType})
29162916
}end,
2917+
["your skills deal you (%d+)%% of mana spent on upfront skill mana costs as (.+) damage"] = function(dmgMult, _, dmgType) return {
2918+
mod("ScoldsBridleSelfDamage", "LIST", {dmgMult = dmgMult, damageType = dmgType})
2919+
}end,
29172920
["when you attack, take (%d+)%% of life as (.+) damage for each warcry exerting the attack"] = function(dmgMult, _, dmgType) return {
29182921
mod("EchoesOfCreationSelfDamage", "LIST", {dmgMult = dmgMult, damageType = dmgType})
29192922
} end,

0 commit comments

Comments
 (0)