WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
Inv trinket naxxramas04

Source[]

This item drops from Maexxna in the 10-man version of Naxxramas.

Notes[]

  • This item has a 10% proc chance.
  • This item has a hidden internal cooldown of 45s.

Effective Haste[]

The effective haste granted by this item is affected primarily by cast time. This trinket benefits more from shorter cast times.

The formula for calculating the amount of effective haste granted by this trinket is:

E = 505 * 10 / (45 + (t / 0.1))

Where

E = effective +haste
t = cast time

The following Java Program can be used to obtain a table of effective +haste for different cast times.

   public static void main(String[] args)
   {
       float time;
       float effective;

       for(time = 1; time < 6.5f; time += 0.5f)
       {
               effective = 505 * 10 / (45 + (time / 0.1f));

System.out.println("" + time + "" + effective + "");

       }
   }

This gives the results below:

Cast TimeEffective +Haste
1.091.818184
1.584.166664
2.077.69231
2.572.14286
3.067.333336
3.563.125
4.059.411766
4.556.11111
5.053.157894
5.550.5
6.048.095238

External links[]