GridStatusHealingReduced

120k Downloads

<big>Grid plugin to show debuffs which reduce or prevent healing received.</big> DE Auf Grid die Schwächungszauber anzeigen, die die erhaltene Heilung verringern oder verhindern.
ES Mostrar sobre Grid los perjuicios que reducen o impiden la sanación recibida.
PR Afficher sur Grid les affaiblissements qui diminuent ou empêchent les soins reçus.
IT Mostrare su Grid le penalità che riducono o impediscono la cura ricevuta.
PT Mostrar sobre Grid as penalidades que impedem ou reduzem a cura recebida.

Description

GridStatusHealingReduced adds two new statuses to Grid: one for debuffs which reduce healing received, and one for debuffs which effectively prevent healing received. These statuses are configurable in all the usual ways, and can be assigned to any indicator, including those added by other plugins.

For a full list of supported debuffs, open the Data.lua file in Notepad. This plugin intentionally does not track debuffs that absorb healing, redirect healing, reduce healing only from HoTs, or Battle Fatigue.

Language Support

  • Works in all languages.
  • Translated into English, Deutsch, Español, Français, Italiano, Português, Русский, 한국어, 简体中文, and 繁體中文.
  • To add or update translations for any locale, post a comment or send me a PM.

Feedback

If you are reporting a bug, please make sure you have the latest version of the addon from this page, and then include detailed instructions I can follow to reproduce the bug myself, whether the bug still happens when all other addons are disabled, and the exact text of the accompanying error message (if any).

If you are reporting a missing debuff, please include its spell ID. You can find this by looking up the debuff on Wowhead and copying the numbers out of the URL, or by running this macro while targeting a unit with the debuff and looking at your chat frame:

/run local d,n,s,_={} for i=1,40 do n,_,_,_,_,_,_,_,_,_s=UnitDebuff("target",i) if not n then break end tinsert(d,n.." "..s) end sort(d) for _,x in ipairs(d) do print(x) end