Skip to content

Commit

Permalink
feat(FrostDK): Chill Streak tweak for tier 31
Browse files Browse the repository at this point in the history
  • Loading branch information
Cilraaz committed Sep 13, 2023
1 parent e4d62aa commit f5c4170
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions HeroRotation_DeathKnight/Frost.lua
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,12 @@ local function Cooldowns()
if S.AbominationLimb:IsCastable() and (not S.BreathofSindragosa:IsAvailable() and not S.Obliteration:IsAvailable() and (VarAddsRemain or VarSTPlanning)) then
if Cast(S.AbominationLimb, Settings.Commons2.GCDasOffGCD.AbominationLimb, nil, not Target:IsInRange(20)) then return "abomination_limb_talent cooldowns 14"; end
end
-- chill_streak,if=active_enemies>=2&(!death_and_decay.ticking&talent.cleaving_strikes|!talent.cleaving_strikes|active_enemies<=5)
if S.ChillStreak:IsReady() and (EnemiesCount10yd >= 2 and (Player:BuffDown(S.DeathAndDecayBuff) and S.CleavingStrikes:IsAvailable() or not S.CleavingStrikes:IsAvailable() or EnemiesCount10yd <= 5)) then
-- chill_streak,if=set_bonus.tier31_2pc
if S.ChillStreak:IsReady() and (Player:HasTier(31, 2)) then
if Cast(S.ChillStreak, nil, nil, not Target:IsSpellInRange(S.ChillStreak)) then return "chill_streak cooldowns 15"; end
end
-- chill_streak,if=!set_bonus.tier31_2pc&active_enemies>=2&(!death_and_decay.ticking&talent.cleaving_strikes|!talent.cleaving_strikes|active_enemies<=5)
if S.ChillStreak:IsReady() and (not Player:HasTier(31, 2) and EnemiesCount10yd >= 2 and (Player:BuffDown(S.DeathAndDecayBuff) and S.CleavingStrikes:IsAvailable() or not S.CleavingStrikes:IsAvailable() or EnemiesCount10yd <= 5)) then
if Cast(S.ChillStreak, nil, nil, not Target:IsSpellInRange(S.ChillStreak)) then return "chill_streak cooldowns 16"; end
end
-- pillar_of_frost,if=talent.obliteration&(variable.adds_remain|variable.st_planning)&(buff.empower_rune_weapon.up|cooldown.empower_rune_weapon.remains)|fight_remains<12
Expand Down

0 comments on commit f5c4170

Please sign in to comment.