Skip to content

Commit cfb0f05

Browse files
author
LocalIdentity
committed
Formatting
1 parent da7f966 commit cfb0f05

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Modules/ModParser.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ local preFlagList = {
12851285
["^attacks used by ballistas [hd][ae][va][el] "] = { flags = ModFlag.Attack, keywordFlags = KeywordFlag.Totem, tag = { type = "Condition", var = "BallistaSkill" } },
12861286
["^attack skills [hd][ae][va][el] "] = { keywordFlags = KeywordFlag.Attack },
12871287
["^spells [hgdf][aei][ivar][nel] a? ?"] = { flags = ModFlag.Spell },
1288-
["^spells which cost life gain "] = { keywordFlags = KeywordFlag.Spell, tag = { type = "StatThreshold", statList = {"LifeCost", "LifePerSecondCost"}, threshold = 1 } },
1288+
["^spells which cost life gain "] = { keywordFlags = KeywordFlag.Spell, tag = { type = "StatThreshold", statList = { "LifeCost", "LifePerSecondCost" }, threshold = 1 } },
12891289
["^spell skills [hd][ae][va][el] "] = { keywordFlags = KeywordFlag.Spell },
12901290
["^spell hits [ghd][ae][iva][eln] "] = { flags = ModFlag.Hit, keywordFlags = KeywordFlag.Spell },
12911291
["^offering skills [hd][ae][va][el] "] = { tag = { type = "SkillType", skillType = SkillType.Offering } },
@@ -1691,8 +1691,8 @@ local modTagList = {
16911691
["while affected by a normal abyss jewel"] = { tag = { type = "MultiplierThreshold", var = "NormalAbyssJewels", threshold = 1 } },
16921692
["while an enemy with an open weakness is in your presence"] = { tag = { type = "Condition", var = "OpenWeaknessEnemyPresence" } }, -- This one means there's an enemy that has open weakness "nearby"
16931693
["against enemies with an open weakness"] = { tag = { type = "Condition", var = "EnemyHasOpenWeakness" } }, -- This one means the enemy you're targeting has open weakness
1694-
["with skills that cost life"] = { tag = { type = "StatThreshold", statList = {"LifeCost", "LifePerSecondCost"}, threshold = 1 } },
1695-
["with spells that cost life"] = { keywordFlags = KeywordFlag.Spell, tag = { type = "StatThreshold", statList = {"LifeCost", "LifePerSecondCost"}, threshold = 1 } },
1694+
["with skills that cost life"] = { tag = { type = "StatThreshold", statList = { "LifeCost", "LifePerSecondCost" }, threshold = 1 } },
1695+
["with spells that cost life"] = { keywordFlags = KeywordFlag.Spell, tag = { type = "StatThreshold", statList = { "LifeCost", "LifePerSecondCost" }, threshold = 1 } },
16961696
-- Gem conditions
16971697
["if you have at least (%d+) (%a+) support gems socketed"] = function(count, _, color) return { tag = { type = "MultiplierThreshold", var = firstToUpper(color) .. "SupportGems", threshold = count } } end,
16981698
["if you have at least (%d+) red, green and blue support gems socketed"] = function(count)

0 commit comments

Comments
 (0)