Wowpedia

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

READ MORE

Wowpedia
Advertisement
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 = 177 * 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 = 177 * 10 / (45 + (time / 0.1f));
               System.out.println("<tr><th>" + time + "</th><td align=\"center\">" + effective + "</td></tr>");
       }
   }

This gives the results below:

Cast TimeEffective +Haste
1.032.181818
1.529.5
2.027.230769
2.525.285714
3.023.6
3.522.125
4.020.823529
4.519.666667
5.018.631579
5.517.7
6.016.857143

Patch changes[]

External links[]

Advertisement