Wowpedia

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

READ MORE

Wowpedia
Advertisement
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[]

This item 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 comparison's 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[]

Advertisement