Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit 0159c47

Browse files
Merge pull request #35 from hugocornago/blood-mage
Support Blood Magic Keystone
2 parents 1903530 + 6500bde commit 0159c47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Data/ModCache.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2935,8 +2935,7 @@ c["Share Charges with Allies in your Presence"]={nil,"Share Charges with Allies
29352935
c["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"]={nil,"Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius "}
29362936
c["Shocks you when you reach maximum Power Charges"]={nil,"Shocks you when you reach maximum Power Charges "}
29372937
c["Skill Gems have 30% more Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalGemAttributeRequirements",type="MORE",value=30}},nil}
2938-
c["Skill Mana Costs Converted to Life Costs"]={nil,"Skill Mana Costs Converted to Life Costs "}
2939-
c["Skill Mana Costs Converted to Life Costs Skills gain 1% of Damage as Chaos Damage per 3 Life Cost"]={nil,"Skill Mana Costs Converted to Life Costs Skills gain 1% of Damage as Chaos Damage per 3 Life Cost "}
2938+
c["Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="CostLifeInsteadOfMana",type="FLAG",value=true}},nil}
29402939
c["Skills Supported by Unleash have 10% increased Seal gain frequency"]={{[1]={flags=0,keywordFlags=0,name="SealGainFrequency",type="INC",value=10}},nil}
29412940
c["Skills Supported by Unleash have 25% increased Seal gain frequency"]={{[1]={flags=0,keywordFlags=0,name="SealGainFrequency",type="INC",value=25}},nil}
29422941
c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}

src/Modules/ModParser.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2082,6 +2082,7 @@ local specialModList = {
20822082
["removes all energy shield"] = { mod("EnergyShield", "MORE", -100) },
20832083
["converts all energy shield to mana"] = { mod("EnergyShieldConvertToMana", "BASE", 100) },
20842084
["skills cost life instead of mana"] = { flag("CostLifeInsteadOfMana") },
2085+
["skill mana costs converted to life costs"] = { flag("CostLifeInsteadOfMana") },
20852086
["skills reserve life instead of mana"] = { flag("BloodMagicReserved") },
20862087
["non%-aura skills cost no mana or life while focus?sed"] = {
20872088
mod("ManaCost", "MORE", -100, { type = "Condition", var = "Focused" }, { type = "SkillType", skillType = SkillType.Aura, neg = true }),

0 commit comments

Comments
 (0)