@@ -665,6 +665,7 @@ local modNameList = {
665665 [" flask charges used" ] = " FlaskChargesUsed" ,
666666 [" flask charges gained" ] = " FlaskChargesGained" ,
667667 [" charge recovery" ] = " FlaskChargeRecovery" ,
668+ [" for flasks you use to not consume charges" ] = " FlaskChanceNotConsumeCharges" ,
668669 [" impales you inflict last" ] = " ImpaleStacksMax" ,
669670 -- Buffs
670671 [" adrenaline" ] = " Condition:Adrenaline" ,
@@ -1557,7 +1558,7 @@ local specialModList = {
15571558 } end ,
15581559 [" (%w+) recovery from regeneration is not applied" ] = function (_ , type ) return { flag (" UnaffectedBy" .. firstToUpper (type ) .. " Regen" ) } end ,
15591560 [" (%d+)%% less damage taken for every (%d+)%% life recovery per second from leech" ] = function (num , _ , div )
1560- return { mod (" DamageTaken" , " MORE" , - num , { type = " PerStat" , stat = " MaxLifeLeechRatePercent" , div = tonumber (div ) }) }
1561+ return { mod (" DamageTaken" , " MORE" , - num , { type = " PerStat" , stat = " MaxLifeLeechRatePercent" , div = tonumber (div ) }) }
15611562 end ,
15621563 [" modifiers to chance to suppress spell damage instead apply to chance to dodge spell hits at 50%% of their value" ] = {
15631564 flag (" ConvertSpellSuppressionToSpellDodge" ),
@@ -3284,7 +3285,7 @@ local specialModList = {
32843285 flag (" Condition:CanHaveAlchemistGenius" ),
32853286 },
32863287 [" (%d+)%% less flask charges gained from kills" ] = function (num ) return {
3287- mod (" FlaskChargesGained" , " MORE" , - num ," from Kills" )
3288+ mod (" FlaskChargesGained" , " MORE" , - num , " from Kills" )
32883289 } end ,
32893290 [" flasks gain (%d+) charges? every (%d+) seconds" ] = function (num , _ , div ) return {
32903291 mod (" FlaskChargesGenerated" , " BASE" , num / div )
0 commit comments