- added damage sub attribute 'enemies' which show only enemies.

- fix issue with enemy spell successful cast.
This commit is contained in:
Tercio
2013-11-26 13:21:31 -02:00
parent 3e7ad42ac6
commit 3d6aae1879
23 changed files with 451 additions and 241 deletions
+8 -4
View File
@@ -16,6 +16,7 @@ do
"damage", --damage taken
"damage", --friendly fire
"miscdata", --frags
"damage", --enemy damage
"heal", --healing done
"heal", --hps
@@ -47,7 +48,7 @@ do
--[[ DAMAGE ]]
dano = 1, --> identifier
[1] = 5, --> sub attributes
[1] = 6, --> sub attributes
--[[ HEALING ]]
cura = 2, --> identifier
@@ -85,21 +86,24 @@ do
damage_taken = 3,
friendly_fire = 4,
frags = 5,
enemies = 6,
lista = { --[[ String Names ]]
Loc ["STRING_ATTRIBUTE_DAMAGE_DONE"],
Loc ["STRING_ATTRIBUTE_DAMAGE_DPS"],
Loc ["STRING_ATTRIBUTE_DAMAGE_TAKEN"],
Loc ["STRING_ATTRIBUTE_DAMAGE_FRIENDLYFIRE"],
Loc ["STRING_ATTRIBUTE_DAMAGE_FRAGS"]
Loc ["STRING_ATTRIBUTE_DAMAGE_FRAGS"],
Loc ["STRING_ATTRIBUTE_DAMAGE_ENEMIES"]
},
icones = {
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {0, .125, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.125, .25, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.25, .375, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.375, .5, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.5, 0.625, 0, 1}}
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {.5, 0.625, 0, 1}},
{"Interface\\AddOns\\Details\\images\\atributos_icones_damage", {0.625, .75, 0, 1}}
},
internal = {"total", "last_dps", "damage_taken", "friendlyfire_total", "total"}
internal = {"total", "last_dps", "damage_taken", "friendlyfire_total", "frags", "enemies"}
},
{