Description
Shows hit, armor, avoidance, expertise and crit reduction.
Used primarily for tanks.
If you want more offensive stats you can install my other WA [Wotlk] Melee Stats at the bottom of this description.
Formula used for Avoidance (vs lvl 80)
baseMissChance = 5 - (UnitLevel("player") \* 5 - select(1, UnitDefense("player"))) \* 0.04; -- vs lvl 80
enemyMissChance = baseMissChance + 1 / (0.0625 + enemyMissCoef / (defense \* 0.04));
defense = math.floor(GetCombatRatingBonus(CR\_DEFENSE\_SKILL));
dodgeChance = GetDodgeChance();
blockChance = GetBlockChance(); -- optional, see options
parryChance = GetParryChance();
avoidance = dodgeChance + blockChance + parryChance + neRacial + enemyMissChance;
neRacial represents the Night Elf racial. If player is Night Elf, it is equal to 2, otherwise it's equal to 0.
Formula used for EHP
ehp = (playerMaxHealth / (1 - armorDR)) / otherDR;
classDR is the damage reduction from the talent of your class. For example, as a prot warrior, it will check if you have defensive stance active and if so add 10% of damage reduction.
buffDR is the damage reduction from the buffs. For example, Blessing of Sanctuary reduces damage taken by 3%.
DR Details (click me)
- https://www.wowhead.com/wotlk/spell=55226/blade-barrier" style="color: #67BCFF">[Blood Barrier] talent is taken into account by default (if player has spent points) and can provide up to 5% damage reduction (DR).
- The https://www.wowhead.com/wotlk/spell=48263/frost-presence" style="color: #67BCFF">[Frost Presence] provides 8% DR with an addition of up to 2% DR from https://www.wowhead.com/wotlk/spell=50385/improved-frost-presence" style="color: #67BCFF">[Improved Frost Presence].
- While channeling https://www.wowhead.com/wotlk/spell=42650/army-of-the-dead" style="color: #67BCFF">[Army of the Dead], dodge and parry as damage reduction is taken into account.
- https://www.wowhead.com/wotlk/spell=48792/icebound-fortitude" style="color: #67BCFF">[Icebound Fortitude] provides 30% DR (with added DR from Defense) while the buff is active. If player has https://www.wowhead.com/wotlk/spell=58625/glyph-of-icebound-fortitude" style="color: #67BCFF">[Glyph of Icebound Fortitude], the buff provides at least 40% DR.
- https://www.wowhead.com/wotlk/spell=53711/shield-of-the-templar" style="color: #67BCFF">[Shield of the Templar] talent can provide up to 3% DR.
- https://www.wowhead.com/wotlk/spell=20470/improved-righteous-fury" style="color: #67BCFF">[Improved Righteous Fury] talent can provide up to 6% DR if player has the https://www.wowhead.com/wotlk/spell=25780/righteous-fury" style="color: #67BCFF">[Righteous Fury] buff.
- https://www.wowhead.com/wotlk/spell=63223/glyph-of-divine-plea" style="color: #67BCFF">[Glyph of Divine Plea] can provide 3% DR if player has the https://www.wowhead.com/wotlk/spell=54428/divine-plea" style="color: #67BCFF">[Divine Plea] buff.
- The https://www.wowhead.com/wotlk/spell=71/defensive-stance" style="color: #67BCFF">[Defensive Stance] provides 10% DR.
- While in bear form, https://www.wowhead.com/wotlk/spell=57877/protector-of-the-pack" style="color: #67BCFF">[Protector of the Pack] talent can provide up to 12% DR.
- https://www.wowhead.com/wotlk/spell=20911/blessing-of-sanctuary" style="color: #67BCFF">[Blessing of Sanctuary] can provide 3% DR.
- https://www.wowhead.com/wotlk/spell=50720/vigilance" style="color: #67BCFF">[Vigilance] can provide 3% DR.
Options
If you don't want to see a certain stat, you can either uncheck it in the group custom options or remove the aura corresponding to the stat.
You can choose whether to show Expertise or expertise rating in the custom options (Expertise by default).
You can also choose if you want to use a color for the labels, and which color to use.
Arms expertise talent is for taking into account the https://www.wowhead.com/wotlk/spell=20505/weapon-mastery" style="color: #67BCFF">[Weapon Mastery] arms warrior talent that reduces your chances to get dodged by 2%, which is equivalent to 2 / 0.25 = 8 Expertise.
What is Crit reduction / Defense equivalence ?
"Crit reduction" is the percentage reduction in the chance of being hit by a critical strike. The cap is 5.6% for bosses. The formula is:
resilienceBonus = GetCombatRatingBonus(CR_RESILIENCE_CRIT_TAKEN);
critReduction = armorDefense * 0.04 + resilienceBonus;
Feral druids also have their talent https://www.wowhead.com/wotlk/spell=33856/survival-of-the-fittest" style="color: #67BCFF">[Survival of the Fittest] which can provide up to 6% crit reduction.
"Defense equivalence" is the representation of (Defense + Resilience) converted to Defense. The formula is:
defEq = baseDefense + math.floor(critReduction / 0.04 \* 100) / 100;
1 Defense = 0.04% crit reduction
1 Resilience = 0.022% crit reduction
Other
Wotlk Tank (Panel version)
Wotlk Melee version
Wotlk Hunter version
Wotlk Spell version
Big thanks to magey and GroxEmpire from Fight Club discord for their help/verifications.
Please report any bug/suggestion/request in the comments.