WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
Advertisement
Ability hunter readiness

Source[]

This item can be purchased in Dalaran for 40 Emblem of Heroism from:

  • Lua error in package.lua at line 80: module 'Module:Factiongfx/faction_tip_link.json' not found. Arcanist Ivrenne <Emblem of Heroism Quartermaster>
  • Lua error in package.lua at line 80: module 'Module:Factiongfx/faction_tip_link.json' not found. Magistrix Lambriesse <Emblem of Heroism Quartermaster>
  • Lua error in package.lua at line 80: module 'Module:Factiongfx/faction_tip_link.json' not found. Debbi Moore <Trinkets & Charms>

Notes[]

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

Effective Spell Power[]

The effective Spell Power granted by this trinket is calculated as a function of cast-time. Essentially, to get the most out of this trinket, you want shorter cast times. The formula for calculating the amount of effective +Spell Power granted by this item is -

E = 590 * 10 / (45 + (t / 0.10)))

Where...

E = effective +Spell Power
t = cast time

The following Java Program can be used to obtaina table of effective +Spell Power for different casting speeds:

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

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

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

       }
   }

This gives the results below:

Cast TimeEffective +Spell Power
1.0107.27273
1.598.333336
2.090.76923
2.584.28571
3.078.666664
3.573.75
4.069.411766
4.565.55556
5.062.105263
5.559.0
6.056.190475

External links[]

Advertisement