@@ -61,6 +61,9 @@ local displayStats = {
6161 { stat = " WithImpaleDPS" , label = " Total DPS inc. Impale" , fmt = " .1f" , compPercent = true , flag = " impale" , flag = " notAverage" , condFunc = function (v ,o ) return v ~= o .TotalDPS and (o .TotalDot or 0 ) == 0 and (o .IgniteDPS or 0 ) == 0 and (o .PoisonDPS or 0 ) == 0 and (o .BleedDPS or 0 ) == 0 end },
6262 { stat = " MirageDPS" , label = " Total Mirage DPS" , fmt = " .1f" , compPercent = true , flag = " mirageArcher" , condFunc = function (v ,o ) return v > 0 end },
6363 { stat = " MirageDPS" , label = " Total Wisp DPS" , fmt = " .1f" , compPercent = true , flag = " wisp" , condFunc = function (v ,o ) return v > 0 end },
64+ { stat = " KineticFusilladeMaxEffectiveAttackRate" , label = " Max Effective Attack Rate" , fmt = " .2f" , condFunc = function (v ,o ) return (o .KineticFusilladeMaxEffectiveAttackRate or 0 ) > 0 end },
65+ { stat = " KineticFusilladeEffectiveDPS" , label = " Effective DPS" , fmt = " .1f" , compPercent = true , condFunc = function (v ,o ) return (o .KineticFusilladeEffectiveDPS or 0 ) > 0 end },
66+ { stat = " KineticFusilladeWastedDPS" , label = " Wasted DPS" , fmt = " .1f" , condFunc = function (v ,o ) return (o .KineticFusilladeWastedDPS or 0 ) > 0 end },
6467 { stat = " CullingDPS" , label = " Culling DPS" , fmt = " .1f" , compPercent = true , condFunc = function (v ,o ) return (o .CullingDPS or 0 ) > 0 end },
6568 { stat = " ReservationDPS" , label = " Reservation DPS" , fmt = " .1f" , compPercent = true , condFunc = function (v ,o ) return (o .ReservationDPS or 0 ) > 0 end },
6669 { stat = " CombinedDPS" , label = " Combined DPS" , fmt = " .1f" , compPercent = true , flag = " notAverage" , condFunc = function (v ,o ) return v ~= ((o .TotalDPS or 0 ) + (o .TotalDot or 0 )) and v ~= o .WithImpaleDPS and ( o .showTotalDotDPS or ( v ~= o .WithPoisonDPS and v ~= o .WithIgniteDPS and v ~= o .WithBleedDPS ) ) end },
@@ -245,4 +248,4 @@ local extraSaveStats = {
245248 " ActiveMinionLimit" ,
246249}
247250
248- return displayStats , minionDisplayStats , extraSaveStats
251+ return displayStats , minionDisplayStats , extraSaveStats
0 commit comments