Wowpedia

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

READ MORE

Wowpedia
No edit summary
m (→‎Patch changes: clean up using AWB)
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
<onlyinclude>{{{{{tpl|tooltip}}}
{{Stub/PTR|3.1.0}}
 
<onlyinclude>{{tooltip
 
 
|mode={{{mode|}}}
 
|mode={{{mode|}}}
 
|arg={{{arg|}}}
 
|arg={{{arg|}}}
Line 17: Line 16:
   
 
== Source ==
 
== Source ==
This item drops from [[Mimiron]] in the 25-man version of [[Ulduar (instance)|Ulduar]].
+
This item can be found inside [[Cache of Innovation]] after defeating [[Mimiron]] in the 25-man version of [[Ulduar (instance)|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("<tr><th>" + time + "</th><td align=\"center\">" + effective + "</td></tr>");
  +
}
  +
}
  +
This gives the results below:
  +
<table border="2" width="75%"><tr><th>Cast Time</th><th>Effective +Spell Power</th></tr>
  +
<tr><th>1.0</th><td align="center">154.54546</td></tr>
  +
<tr><th>1.5</th><td align="center">141.66667</td></tr>
  +
<tr><th>2.0</th><td align="center">130.76923</td></tr>
  +
<tr><th>2.5</th><td align="center">121.42857</td></tr>
  +
<tr><th>3.0</th><td align="center">113.333336</td></tr>
  +
<tr><th>3.5</th><td align="center">106.25</td></tr>
  +
<tr><th>4.0</th><td align="center">100.0</td></tr>
  +
<tr><th>4.5</th><td align="center">94.44444</td></tr>
  +
<tr><th>5.0</th><td align="center">89.47369</td></tr>
  +
<tr><th>5.5</th><td align="center">85.0</td></tr>
  +
<tr><th>6.0</th><td align="center">80.95238</td></tr>
  +
</table>
   
 
== Patch changes ==
 
== Patch changes ==
* {{patched|patch=3.1.0|note=Added.}}
+
* {{Patch 3.1.0|note=Added.}}
   
 
== External links ==
 
== External links ==
Line 29: Line 66:
 
{{Elinks-item|45490}}
 
{{Elinks-item|45490}}
   
[[Category:World of Warcraft epic items]]
 
 
[[Category:World of Warcraft epic trinkets]]
 
[[Category:World of Warcraft epic trinkets]]
 
[[Category:Ulduar items]]
 
[[Category:Ulduar items]]

Revision as of 02:44, 5 October 2009

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