Skip to content

Commit

Permalink
[Death Knight] Frost - APL improvements to get Koltira's Newfound Wil…
Browse files Browse the repository at this point in the history
…l working properly
  • Loading branch information
gixxpunk committed Dec 27, 2016
1 parent f2407b4 commit fa40711
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion engine/class_modules/sc_death_knight.cpp
Expand Up @@ -6864,8 +6864,13 @@ void death_knight_t::default_apl_frost()
// Refresh Icy talons if it's about to expire
generic -> add_action( this, "Frost Strike", "if=buff.icy_talons.remains<1.5&talent.icy_talons.enabled" );

// Howling blast disease upkeep and rimeing
// Howling blast disease upkeep
generic -> add_action( this, "Howling Blast", "target_if=!dot.frost_fever.ticking" );

// priotize Obliterate if Koltira's Newfound Will is equipped
generic -> add_action( this, "Obliterate", "if=equipped.132366" );

// Howling blast @rime proc
generic -> add_action( this, "Howling Blast", "if=buff.rime.react" );

// Prevent RP waste
Expand Down
1 change: 1 addition & 0 deletions profiles/Tier19H/Death_Knight_Frost_T19H.simc
Expand Up @@ -56,6 +56,7 @@ actions.core+=/remorseless_winter,if=talent.frozen_pulse.enabled

actions.generic=frost_strike,if=buff.icy_talons.remains<1.5&talent.icy_talons.enabled
actions.generic+=/howling_blast,target_if=!dot.frost_fever.ticking
actions.generic+=/obliterate,if=equipped.132366
actions.generic+=/howling_blast,if=buff.rime.react
actions.generic+=/frost_strike,if=runic_power>=80
actions.generic+=/call_action_list,name=core
Expand Down
1 change: 1 addition & 0 deletions profiles/Tier19H_NH/Death_Knight_Frost_T19H_NH.simc
Expand Up @@ -56,6 +56,7 @@ actions.core+=/remorseless_winter,if=talent.frozen_pulse.enabled

actions.generic=frost_strike,if=buff.icy_talons.remains<1.5&talent.icy_talons.enabled
actions.generic+=/howling_blast,target_if=!dot.frost_fever.ticking
actions.generic+=/obliterate,if=equipped.132366
actions.generic+=/howling_blast,if=buff.rime.react
actions.generic+=/frost_strike,if=runic_power>=80
actions.generic+=/call_action_list,name=core
Expand Down
1 change: 1 addition & 0 deletions profiles/Tier19M/Death_Knight_Frost_T19M.simc
Expand Up @@ -55,6 +55,7 @@ actions.core+=/remorseless_winter,if=talent.frozen_pulse.enabled

actions.generic=frost_strike,if=buff.icy_talons.remains<1.5&talent.icy_talons.enabled
actions.generic+=/howling_blast,target_if=!dot.frost_fever.ticking
actions.generic+=/obliterate,if=equipped.132366
actions.generic+=/howling_blast,if=buff.rime.react
actions.generic+=/frost_strike,if=runic_power>=80
actions.generic+=/call_action_list,name=core
Expand Down
1 change: 1 addition & 0 deletions profiles/Tier19M_NH/Death_Knight_Frost_T19M_NH.simc
Expand Up @@ -56,6 +56,7 @@ actions.core+=/remorseless_winter,if=talent.frozen_pulse.enabled

actions.generic=frost_strike,if=buff.icy_talons.remains<1.5&talent.icy_talons.enabled
actions.generic+=/howling_blast,target_if=!dot.frost_fever.ticking
actions.generic+=/obliterate,if=equipped.132366
actions.generic+=/howling_blast,if=buff.rime.react
actions.generic+=/frost_strike,if=runic_power>=80
actions.generic+=/call_action_list,name=core
Expand Down
1 change: 1 addition & 0 deletions profiles/Tier19P/Death_Knight_Frost_T19P.simc
Expand Up @@ -57,6 +57,7 @@ actions.core+=/remorseless_winter,if=talent.frozen_pulse.enabled

actions.generic=frost_strike,if=buff.icy_talons.remains<1.5&talent.icy_talons.enabled
actions.generic+=/howling_blast,target_if=!dot.frost_fever.ticking
actions.generic+=/obliterate,if=equipped.132366
actions.generic+=/howling_blast,if=buff.rime.react
actions.generic+=/frost_strike,if=runic_power>=80
actions.generic+=/call_action_list,name=core
Expand Down

0 comments on commit fa40711

Please sign in to comment.