Skip to content

Commit 4b82d6b

Browse files
committed
Changes from Midnight Pre-Patch 12.0.1
1 parent 04bf2b9 commit 4b82d6b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/analysis/retail/deathknight/unholy/modules/Abilities.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ class Abilities extends CoreAbilities {
2525
},
2626
range: 30,
2727
},
28+
{
29+
spell: SPELLS.VAMPIRIC_STRIKE.id,
30+
enabled: combatant.hasTalent(TALENTS.VAMPIRIC_STRIKE_TALENT),
31+
category: SPELL_CATEGORY.ROTATIONAL,
32+
gcd: {
33+
base: 1500,
34+
},
35+
range: 30,
36+
},
2837
{
2938
spell: SPELLS.FESTERING_SCYTHE.id,
3039
enabled: combatant.hasTalent(TALENTS.FESTERING_SCYTHE_TALENT),
@@ -52,6 +61,7 @@ class Abilities extends CoreAbilities {
5261
},
5362
{
5463
spell: SPELLS.DEATH_AND_DECAY.id,
64+
enabled: !combatant.hasTalent(TALENTS.SCYTHE_OF_DECAY_TALENT),
5565
category: SPELL_CATEGORY.ROTATIONAL_AOE,
5666
cooldown: 30,
5767
gcd: {
@@ -81,7 +91,9 @@ class Abilities extends CoreAbilities {
8191
{
8292
spell: TALENTS.PUTREFY_TALENT.id,
8393
enabled: combatant.hasTalent(TALENTS.PUTREFY_TALENT),
84-
category: SPELL_CATEGORY.ROTATIONAL,
94+
category: SPELL_CATEGORY.COOLDOWNS,
95+
cooldown: 30,
96+
charges: combatant.hasTalent(TALENTS.PUTRID_ECHOES_TALENT) ? 2 : 1,
8597
gcd: {
8698
base: 1500,
8799
},

0 commit comments

Comments
 (0)