Wowpedia

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

READ MORE

Wowpedia
(upgraded rare quality template)
(20 intermediate revisions by 13 users not shown)
Line 1: Line 1:
  +
<onlyinclude>{{{{{tpl|tooltip}}}
<noinclude>
 
{{bc}}
+
|mode={{{mode|}}}
  +
|arg={{{arg|}}}
{{Stub/Item/BC}}
 
  +
|bind=BoP
</noinclude>
 
  +
|icon=INV_Misc_Gem_Pearl_01
  +
|slot=Trinket
  +
|ilvl=115
  +
|name=Quagmirran's Eye
  +
|level=70
  +
|sell={{cost|g=1}}
  +
|unique-eq=1
  +
|itemid=27683
  +
|quality=Rare
 
|effect=Equip: Increases spell power by 37.<br />Equip: Your harmful spells have a chance to increase your spell haste rating by 320 for 6 secs.}}</onlyinclude>
  +
'''Quagmirran's Eye''' is an rare quality trinket for DPS casters.
  +
==Source==
  +
[[File:Quagmirran's Eye TCG.jpg|thumb|left|"Hidden within the eye lies the very secret of magic."]]
 
This item drops from [[Quagmirran]] in [[The Slave Pens]] wing of [[Coilfang Reservoir]] on Heroic mode.
   
  +
==Notes==
{| style="{{{{{1|{{If|{{Equal|{{PAGENAME}}|Quagmirran's Eye}}|then=tooltipcss|else=Smalltooltipcss}}}}}}}"
 
  +
* Rumored to be 10% proc and 45s internal cooldown after proc.
| colspan=2 | {{quality|Rare|Quagmirran's Eye}}
 
|-
 
| Trinket || align=right | Unique
 
|-
 
| colspan=2 | Binds when picked up
 
|-
 
| colspan=2 | Requires Level 70
 
|-
 
| colspan=2 style="color: #0f0;" | <u>Equip</u>: Increases damage and healing done by magical spells and effects by up to 37.
 
|-
 
| colspan=2 style="color: #0f0;" | <u>Equip</u>: Your harmful spells have a chance to increase your spell haste rating by 320 for 6 secs.
 
|-
 
| colspan=2 |Sells for {{g|1}} to vendors
 
|-
 
| colspan=2 | Item Level 115
 
|}
 
<noinclude>
 
   
  +
==Effective Spell Haste==
{{clrl}}
 
  +
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 spell power granted by this trinket is:
  +
E = 320 * 6 / (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 = 320 * 6/ (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 +Haste</th></tr>
  +
<tr><th>1.0</th><td align="center">34.909092</td></tr>
  +
<tr><th>1.5</th><td align="center">32.0</td></tr>
  +
<tr><th>2.0</th><td align="center">29.538462</td></tr>
  +
<tr><th>2.5</th><td align="center">27.428572</td></tr>
  +
<tr><th>3.0</th><td align="center">25.6</td></tr>
  +
<tr><th>3.5</th><td align="center">24.0</td></tr>
  +
<tr><th>4.0</th><td align="center">22.588236</td></tr>
  +
<tr><th>4.5</th><td align="center">21.333334</td></tr>
  +
<tr><th>5.0</th><td align="center">20.210526</td></tr>
  +
<tr><th>5.5</th><td align="center">19.2</td></tr>
  +
<tr><th>6.0</th><td align="center">18.285715</td></tr>
  +
</table>
   
== Source ==
+
==External links==
  +
<!-- Read http://www.wowwiki.com/WoWWiki:External_links before posting your links here.
Drops from [[Quagmirran]] in [[The Slave Pens]] wing of [[Coilfang Reservoir]] on Heroic mode.
 
  +
Links that do not conform to the rules will be DELETED.
  +
Repeat violations may result in a BAN.
  +
Have a nice day. :) -->
  +
{{elinks-item|27683}}
   
== External Links ==
 
* [http://www.thottbot.com/?i=59610 Thottbot]
 
* [http://wow.allakhazam.com/db/item.html?witem=27683&locale=enUS;source=live Allakhazam]
 
   
  +
[[Category:World of Warcraft rare trinkets]]
</noinclude>
 
  +
[[Category:Slave Pens items]]

Revision as of 15:11, 8 September 2009

Inv misc gem pearl 01

Quagmirran's Eye is an rare quality trinket for DPS casters.

Source

Quagmirran's Eye TCG

"Hidden within the eye lies the very secret of magic."

This item drops from Quagmirran in The Slave Pens wing of Coilfang Reservoir on Heroic mode.

Notes

  • Rumored to be 10% proc and 45s internal cooldown after proc.

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

E = 320 * 6 / (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 = 320 * 6/ (45 + (time / 0.1f));

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

      }
  }

This gives the results below:

Cast TimeEffective +Haste
1.034.909092
1.532.0
2.029.538462
2.527.428572
3.025.6
3.524.0
4.022.588236
4.521.333334
5.020.210526
5.519.2
6.018.285715

External links