Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement
Inv trinket naxxramas03

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 = 238 * 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 = 238 * 10 / (45 + (time / 0.15f));
              System.out.println("<tr><th>" + time + "</th><td align=\"center\">" + effective + "</td></tr>");
      }
  }
Cast Time Effective +Damage
1.0 46.06452
1.5 43.27273
2.0 40.8
2.5 38.59459
3.0 36.61538
3.5 34.82927
4.0 33.20930
4.5 31.73333
5.0 30.38298
5.5 29.14286
6.0 28.0

Patch changes[]

See also[]

External links[]

Advertisement