Wowpedia

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

READ MORE

Wowpedia
m (Cleanup; Elinks message per WW:BR request AWB)
(Category-based update queue; altering tooltip only.)
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{tooltip
+
<onlyinclude>{{{{{tpl|tooltip}}}
 
|mode={{{mode|}}}
 
|mode={{{mode|}}}
 
|arg={{{arg|}}}
 
|arg={{{arg|}}}
|itemid=28418
 
|unique=
 
|icon=INV_Gizmo_ElementalBlastingPowder
 
|quality=Rare
 
|effect=
 
Equip: Improves spell critical strike rating by 30.<br>
 
Equip: Chance on spell critical hit to increase your spell damage and healing by 225 for 10 secs.
 
|name=Shiffar's Nexus-Horn
 
 
|bind=BoP
 
|bind=BoP
 
|icon=INV_Gizmo_ElementalBlastingPowder
 
|slot=Trinket
 
|slot=Trinket
|level=70
 
|sell={{cost|1}}
 
 
|ilvl=115
 
|ilvl=115
 
|name=Shiffar's Nexus-Horn
}}<noinclude>
 
 
|level=70
 
|sell={{cost|g=1}}
 
|unique-eq=1
 
|itemid=28418
 
|quality=Rare
 
|effect=Equip: Improves critical strike rating by 30.<br />Equip: Chance on spell critical hit to increase your spell power by 225 for 10 secs.}}</onlyinclude>
 
'''Shiffar's Nexus-Horn''' is a powerful caster [[trinket]] that has a chance to give a buff to spell damage after criting.
 
'''Shiffar's Nexus-Horn''' is a powerful caster [[trinket]] that has a chance to give a buff to spell damage after criting.
   
Line 24: Line 21:
 
*There is an internal cooldown that prevents this trinket from proccing more than once every 45 seconds.
 
*There is an internal cooldown that prevents this trinket from proccing more than once every 45 seconds.
 
*It can proc off anything that is considered a spell and that can crit, this includes [[Healthstone]]s and Heals.
 
*It can proc off anything that is considered a spell and that can crit, this includes [[Healthstone]]s and Heals.
  +
  +
==Effective Damage==
  +
The effective +damage granted by this trinket is affected primarily by cast time and critical strike chance. This trinket gains more benefit from shorter cast times and higher critical strike chances.
  +
  +
The formula for calculating the amount of effective +damage granted by Shiffar's Nexus-Horn is -
  +
  +
E = 225 * 10 / (45 + (t / (0.2 * c)))
  +
Where...
  +
E = effective +damage
  +
t = cast time
  +
c = critical strike chance
  +
  +
The following Java Program can be used to obtain a table of effective +damage for different casting speeds:
  +
public static void main(String[] args)
  +
{
  +
float crit;
  +
float time;
  +
float effective;
  +
for(time = 1; time < 6.5f; time += 0.5f)
  +
{
  +
for(crit = 10; crit < 101; crit++)
  +
{
  +
effective = 225 * 10 / (45 + (time / (0.2f * (crit / 100))));
  +
System.out.println("<tr><th>" + crit + "</th><th>" + time + "</th><td align=\"center\">" + effective + "</td>");
  +
}
  +
}
  +
}
  +
  +
The four main(Base) casting speeds which should be considered, along with a shortened table for each, are given below:
  +
* 1.5s - Scorch, Searing Pain, Wrath
  +
  +
<table border="2" width="75%"><tr><th>Base Crit %<th>Cast Time</th><th>Effective
  +
+Damage</th>
  +
<tr><th>20.0</th><th>1.5</th><td align="center">27.272728</td>
  +
<tr><th>25.0</th><th>1.5</th><td align="center">30.0</td>
  +
<tr><th>30.0</th><th>1.5</th><td align="center">32.142857</td>
  +
<tr><th>35.0</th><th>1.5</th><td align="center">33.870968</td>
  +
<tr><th>40.0</th><th>1.5</th><td align="center">35.294117</td>
  +
<tr><th>45.0</th><th>1.5</th><td align="center">36.486485</td>
  +
<tr><th>50.0</th><th>1.5</th><td align="center">37.5</td>
  +
</table>
  +
* 2.0s - Lightning Bolt
  +
<table border="2" width="75%"><tr><th>Base Crit %<th>Cast Time</th><th>Effective
  +
+Damage</th>
  +
<tr><th>20.0</th><th>2.0</th><td align="center">23.68421</td>
  +
<tr><th>25.0</th><th>2.0</th><td align="center">26.470589</td>
  +
<tr><th>30.0</th><th>2.0</th><td align="center">28.723406</td>
  +
<tr><th>35.0</th><th>2.0</th><td align="center">30.582525</td>
  +
<tr><th>40.0</th><th>2.0</th><td align="center">32.142857</td>
  +
<tr><th>45.0</th><th>2.0</th><td align="center">33.471073</td>
  +
<tr><th>50.0</th><th>2.0</th><td align="center">34.615383</td>
  +
</table>
  +
* 2.5s - Frostbolt, Shadowbolt, Incinerate
  +
<table border="2" width="75%"><tr><th>Base Crit %<th>Cast Time</th><th>Effective
  +
+Damage</th>
  +
<tr><th>20.0</th><th>2.5</th><td align="center">20.930233</td>
  +
<tr><th>25.0</th><th>2.5</th><td align="center">23.68421</td>
  +
<tr><th>30.0</th><th>2.5</th><td align="center">25.961538</td>
  +
<tr><th>35.0</th><th>2.5</th><td align="center">27.876106</td>
  +
<tr><th>40.0</th><th>2.5</th><td align="center">29.508196</td>
  +
<tr><th>45.0</th><th>2.5</th><td align="center">30.91603</td>
  +
<tr><th>50.0</th><th>2.5</th><td align="center">32.142857</td>
  +
</table>
  +
* 3.0s - Fireball
  +
<table border="2" width="75%"><tr><th>Base Crit %<th>Cast Time</th><th>Effective
  +
+Damage</th>
  +
<tr><th>20.0</th><th>3.0</th><td align="center">18.750002</td>
  +
<tr><th>25.0</th><th>3.0</th><td align="center">21.428572</td>
  +
<tr><th>30.0</th><th>3.0</th><td align="center">23.68421</td>
  +
<tr><th>35.0</th><th>3.0</th><td align="center">25.609755</td>
  +
<tr><th>40.0</th><th>3.0</th><td align="center">27.272728</td>
  +
<tr><th>45.0</th><th>3.0</th><td align="center">28.723404</td>
  +
<tr><th>50.0</th><th>3.0</th><td align="center">30.0</td>
  +
</table>
  +
  +
For comparisons sake, [[Icon of the Silver Crescent]], if used every cooldown, adds 68.7 +damage (25.7 +damage coming from its on-use effect).
   
 
==See also==
 
==See also==
Line 35: Line 108:
 
{{Elinks-item|28418}}
 
{{Elinks-item|28418}}
   
  +
[[Category:World of Warcraft trinket items]]
 
[[Category:World of Warcraft rare items]]
+
[[Category:World of Warcraft rare trinkets]]
 
[[Category:Arcatraz items]]
 
[[Category:Arcatraz items]]
</noinclude>
 

Revision as of 19:49, 16 March 2009

Inv gizmo elementalblastingpowder

Shiffar's Nexus-Horn is a powerful caster trinket that has a chance to give a buff to spell damage after criting.

Source

Drops from Harbinger Skyriss in the Arcatraz, the 3rd wing of the Tempest Keep on both normal and heroic difficulty.

Notes

  • There is an internal cooldown that prevents this trinket from proccing more than once every 45 seconds.
  • It can proc off anything that is considered a spell and that can crit, this includes Healthstones and Heals.

Effective Damage

The effective +damage granted by this trinket is affected primarily by cast time and critical strike chance. This trinket gains more benefit from shorter cast times and higher critical strike chances.

The formula for calculating the amount of effective +damage granted by Shiffar's Nexus-Horn is -

E = 225 * 10 / (45 + (t / (0.2 * c)))

Where...

E = effective +damage
t = cast time
c = critical strike chance

The following Java Program can be used to obtain a table of effective +damage for different casting speeds:

   public static void main(String[] args)
   {
       float crit;
       float time;
       float effective;
       for(time = 1; time < 6.5f; time += 0.5f)
       {
           for(crit = 10; crit < 101; crit++)
           {
               effective = 225 * 10 / (45 + (time / (0.2f * (crit / 100))));

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

           }
       }
   }

The four main(Base) casting speeds which should be considered, along with a shortened table for each, are given below:

  • 1.5s - Scorch, Searing Pain, Wrath
Base Crit %Cast TimeEffective +Damage
20.01.527.272728
25.01.530.0
30.01.532.142857
35.01.533.870968
40.01.535.294117
45.01.536.486485
50.01.537.5
  • 2.0s - Lightning Bolt
Base Crit %Cast TimeEffective +Damage
20.02.023.68421
25.02.026.470589
30.02.028.723406
35.02.030.582525
40.02.032.142857
45.02.033.471073
50.02.034.615383
  • 2.5s - Frostbolt, Shadowbolt, Incinerate
Base Crit %Cast TimeEffective +Damage
20.02.520.930233
25.02.523.68421
30.02.525.961538
35.02.527.876106
40.02.529.508196
45.02.530.91603
50.02.532.142857
  • 3.0s - Fireball
Base Crit %Cast TimeEffective +Damage
20.03.018.750002
25.03.021.428572
30.03.023.68421
35.03.025.609755
40.03.027.272728
45.03.028.723404
50.03.030.0

For comparisons sake, Inv weapon shortblade 23 [Icon of the Silver Crescent], if used every cooldown, adds 68.7 +damage (25.7 +damage coming from its on-use effect).

See also

External links