Wowpedia

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

READ MORE

Wowpedia
Register
Advertisement
Achievement dungeon ulduar77 10man

Source

This item can be found inside Cache of Innovation after defeating Mimiron in the 25-man version of Ulduar.

Notes

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

Effective Spell Power

The effective spell power 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 spell power granted by this trinket is:

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

Where

E = effective +spell power 
t = cast time

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

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

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

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

      }
  }

This gives the results below:

Cast TimeEffective +Spell Power
1.0154.54546
1.5141.66667
2.0130.76923
2.5121.42857
3.0113.333336
3.5106.25
4.0100.0
4.594.44444
5.089.47369
5.585.0
6.080.95238

Patch changes

External links

Advertisement