
- Dying Curse
- Item Level 213
- Binds when picked up
- Unique
- Trinket
- Requires level 80
- Equip: Improves hit rating by 71.
Equip: Your spells have a chance to increase your spell power by 765 for 10 sec. - Sell Price: 7
20
39
Source[]
This item drops from Maexxna, Gothik the Harvester, Heigan the Unclean, and Grobbulus in the 25-man version of Naxxramas.
Notes[]
- This item has a 15% proc chance.
- This item has a hidden internal cooldown of 45s.
Effective +Spell Power[]
The effective spell power granted by this trinket is calculated as a function of cast-time. To get the most out of this trinket, you want shorter cast times. The formula for calculating the amount of effective +spell power is -
E = 765 * 10 / (45 + (t / 0.15)))
Where
E = Effective +spell power t = Cast Time
The following Java Program can be used to obtain a table of effective +damage for different casting speeds:
public static void main(String[] args)
{
float crit;
float time;
float effective;
for(time = 1; time < 6.5f; time += 0.5f)
{
effective = 765 * 10 / (45 + (time / 0.15f));
System.out.println("" + time + "" + effective + "");
} }
| Cast Time | Effective +Damage |
|---|---|
| 1.0 | 148.06451 |
| 1.5 | 139.09091 |
| 2.0 | 131.14285 |
| 2.5 | 124.05406 |
| 3.0 | 117.69231 |
| 3.5 | 111.951225 |
| 4.0 | 106.74419 |
| 4.5 | 102.0 |
| 5.0 | 97.659584 |
| 5.5 | 93.67347 |
| 6.0 | 90.0 |