From d2933c9ab972ec8815d762e55514ad7084cd6e0c Mon Sep 17 00:00:00 2001 From: funkydude Date: Sat, 9 Dec 2023 06:10:59 +0000 Subject: [PATCH] Cleanups --- CastleNathria/Affixes.lua | 8 +++-- CastleNathria/Altimor.lua | 16 +++++---- CastleNathria/HungeringDestroyer.lua | 5 +-- CastleNathria/InervaDarkvein.lua | 2 +- CastleNathria/SunKingsSalvation.lua | 2 +- SanctumOfDomination/Affixes.lua | 8 +++-- SanctumOfDomination/KelThuzad.lua | 28 ++++++++-------- SanctumOfDomination/Locales/deDE.lua | 12 ++++--- SanctumOfDomination/Locales/esES.lua | 12 ++++--- SanctumOfDomination/Locales/esMX.lua | 12 ++++--- SanctumOfDomination/Locales/frFR.lua | 12 ++++--- SanctumOfDomination/Locales/itIT.lua | 12 ++++--- SanctumOfDomination/Locales/koKR.lua | 12 ++++--- SanctumOfDomination/Locales/ptBR.lua | 12 ++++--- SanctumOfDomination/Locales/ruRU.lua | 12 ++++--- SanctumOfDomination/Locales/zhCN.lua | 12 ++++--- SanctumOfDomination/Locales/zhTW.lua | 12 ++++--- SanctumOfDomination/SylvanasWindrunner.lua | 38 ++++++++++------------ SanctumOfDomination/TheEyeOfTheJailer.lua | 16 ++++----- SepulcherOfTheFirstOnes/Affixes.lua | 8 +++-- SepulcherOfTheFirstOnes/AnduinWrynn.lua | 4 +-- SepulcherOfTheFirstOnes/Halondrus.lua | 4 +-- SepulcherOfTheFirstOnes/Lihuvim.lua | 2 +- SepulcherOfTheFirstOnes/Locales/deDE.lua | 6 ++-- SepulcherOfTheFirstOnes/Locales/esES.lua | 10 ++++-- SepulcherOfTheFirstOnes/Locales/esMX.lua | 10 ++++-- SepulcherOfTheFirstOnes/Locales/frFR.lua | 16 +++++---- SepulcherOfTheFirstOnes/Locales/itIT.lua | 10 ++++-- SepulcherOfTheFirstOnes/Locales/koKR.lua | 8 +++-- SepulcherOfTheFirstOnes/Locales/ptBR.lua | 10 ++++-- SepulcherOfTheFirstOnes/Locales/ruRU.lua | 10 ++++-- SepulcherOfTheFirstOnes/Locales/zhCN.lua | 8 +++-- SepulcherOfTheFirstOnes/Locales/zhTW.lua | 8 +++-- SepulcherOfTheFirstOnes/LordsOfDread.lua | 6 ++-- SepulcherOfTheFirstOnes/Rygelon.lua | 4 +-- SepulcherOfTheFirstOnes/TheJailer.lua | 7 ++-- 36 files changed, 215 insertions(+), 159 deletions(-) diff --git a/CastleNathria/Affixes.lua b/CastleNathria/Affixes.lua index 043ba6f..9efc799 100644 --- a/CastleNathria/Affixes.lua +++ b/CastleNathria/Affixes.lua @@ -59,7 +59,7 @@ local bar_icon = bar_icon_texture local L = mod:GetLocale() if L then L.custom_on_bar_icon = "Bar Icon" - L.custom_on_bar_icon_desc = bar_icon_texture.."Show the Fated Raid icon on bars." + L.custom_on_bar_icon_desc = "Show the Fated Raid icon on bars." L.chaotic_essence = "Essence" L.creation_spark = "Sparks" @@ -88,10 +88,14 @@ end function mod:VerifyEnable() if C_ModifiedInstance.GetModifiedInstanceInfoFromMapID(self.instanceId) then - return true + return true end end +function mod:OnRegister() + L.custom_on_bar_icon_desc = bar_icon_texture .. L.custom_on_bar_icon_desc +end + function mod:OnBossEnable() self:RegisterMessage("BigWigs_OnBossEngage", "OnBossEngage") self:RegisterEvent("ENCOUNTER_END") diff --git a/CastleNathria/Altimor.lua b/CastleNathria/Altimor.lua index 4690e6c..f8ba562 100644 --- a/CastleNathria/Altimor.lua +++ b/CastleNathria/Altimor.lua @@ -23,7 +23,7 @@ local ripSoulCount = 1 local shadesOfBargastCount = 1 local petrifyingHowlCount = 1 local mobCollector = {} -local lungeTarget = nil +local lungeTarget = 0 -------------------------------------------------------------------------------- -- Localization @@ -117,7 +117,7 @@ function mod:OnEngage() shadesOfBargastCount = 1 petrifyingHowlCount = 1 mobCollector = {} - lungeTarget = nil + lungeTarget = 0 self:SetStage(1) self:Bar(334404, 6.5) -- Spreadshot @@ -206,20 +206,22 @@ function mod:JaggedClawsApplied(args) end function mod:ViciousLungeApplied(args) - lungeTarget = args.destGUID self:TargetMessage(args.spellId, "orange", args.destName, CL.count:format(args.spellName, viciousLungeCount)) self:PrimaryIcon(args.spellId, args.destName) - if self:Me(lungeTarget) then + if self:Me(args.destGUID) then + lungeTarget = 2 self:PlaySound(args.spellId, "warning") self:Yell(args.spellId) self:YellCountdown(args.spellId, 6) + else + lungeTarget = 1 end viciousLungeCount = viciousLungeCount + 1 self:Bar(args.spellId, 25, CL.count:format(args.spellName, viciousLungeCount)) end function mod:ViciousLungeRemoved(args) - lungeTarget = nil + lungeTarget = 0 self:PrimaryIcon(args.spellId) if self:Me(args.destGUID) then self:CancelYellCountdown(args.spellId) @@ -227,9 +229,9 @@ function mod:ViciousLungeRemoved(args) end function mod:MargoreDeath() - if lungeTarget then -- Vicious Lunge + if lungeTarget > 0 then -- Currently casting Vicious Lunge on someone self:PrimaryIcon(334945) - if self:Me(lungeTarget) then + if lungeTarget == 2 then -- Casting it on you self:CancelYellCountdown(334945) self:Yell(334945, CL.cancelled:format(self:SpellName(334945)), true) end diff --git a/CastleNathria/HungeringDestroyer.lua b/CastleNathria/HungeringDestroyer.lua index 482b980..c8beea0 100644 --- a/CastleNathria/HungeringDestroyer.lua +++ b/CastleNathria/HungeringDestroyer.lua @@ -37,9 +37,6 @@ if L then L.custom_on_repeating_say_laser = "Repeating Volatile Ejection Say" L.custom_on_repeating_say_laser_desc = "Repeating say messages for Volatile Ejection to help when moving into chat range of players that didn't see your first message." - - L.currentHealth = "%d%%" - L.currentHealthIcon = "{rt%d}%d%%" end -------------------------------------------------------------------------------- @@ -167,7 +164,7 @@ local function RepeatingChatMessages() local currentHealthPercent = math.floor(mod:GetHealth("player")) if currentHealthPercent < 75 then -- Only let players know when you are below 75% local myIcon = GetRaidTargetIndex("player") - local msg = myIcon and L.currentHealthIcon:format(myIcon, currentHealthPercent) or L.currentHealth:format(currentHealthPercent) + local msg = myIcon and ("{rt%d}%d%%"):format(myIcon, currentHealthPercent) or ("%d%%"):format(currentHealthPercent) mod:Yell(false, msg, true) end if not mod:Mythic() then diff --git a/CastleNathria/InervaDarkvein.lua b/CastleNathria/InervaDarkvein.lua index bbf1de7..a5dfda7 100644 --- a/CastleNathria/InervaDarkvein.lua +++ b/CastleNathria/InervaDarkvein.lua @@ -77,7 +77,7 @@ function mod:GetOptions() 331550, -- Condemn },{ [331870] = "general", - [325379] = -22571, -- Container of Desire + [341621] = -22571, -- Container of Desire [325769] = -22592, -- Container of Bottled Anima [324983] = -22599, -- Container of Sin [332664] = -22567, -- Container of Concentrated Anima diff --git a/CastleNathria/SunKingsSalvation.lua b/CastleNathria/SunKingsSalvation.lua index abd94ee..0cb3cf6 100644 --- a/CastleNathria/SunKingsSalvation.lua +++ b/CastleNathria/SunKingsSalvation.lua @@ -126,7 +126,7 @@ function mod:GetOptions() [-21954] = -21951, -- Ministers of Vice [326078] = -22231, -- Infusing Essences [328889] = -22089, -- High Torturer Darithos - [338600] = "mythic", + [337859] = "mythic", },{ [328479] = CL.fixate, -- Eyes on Target (Fixate) [337859] = CL.shield, -- Cloak of Flames (Shield) diff --git a/SanctumOfDomination/Affixes.lua b/SanctumOfDomination/Affixes.lua index 634ed06..ba81c55 100644 --- a/SanctumOfDomination/Affixes.lua +++ b/SanctumOfDomination/Affixes.lua @@ -60,7 +60,7 @@ local bar_icon = bar_icon_texture local L = mod:GetLocale() if L then L.custom_on_bar_icon = "Bar Icon" - L.custom_on_bar_icon_desc = bar_icon_texture.."Show the Fated Raid icon on bars." + L.custom_on_bar_icon_desc = "Show the Fated Raid icon on bars." L.chaotic_essence = "Essence" L.creation_spark = "Sparks" @@ -89,10 +89,14 @@ end function mod:VerifyEnable() if C_ModifiedInstance.GetModifiedInstanceInfoFromMapID(self.instanceId) then - return true + return true end end +function mod:OnRegister() + L.custom_on_bar_icon_desc = bar_icon_texture .. L.custom_on_bar_icon_desc +end + function mod:OnBossEnable() self:RegisterMessage("BigWigs_OnBossEngage", "OnBossEngage") self:RegisterEvent("ENCOUNTER_END") diff --git a/SanctumOfDomination/KelThuzad.lua b/SanctumOfDomination/KelThuzad.lua index 9df57e6..55d5fd2 100644 --- a/SanctumOfDomination/KelThuzad.lua +++ b/SanctumOfDomination/KelThuzad.lua @@ -40,8 +40,6 @@ if L then L.spike = "Spike" L.silence = mod:SpellName(226452) -- Silence L.miasma = "Miasma" -- Short for Sinister Miasma - L.glacial_winds = "Tornadoes" - L.foul_winds = "Pushback" L.custom_on_nameplate_fixate = "Fixate Nameplate Icon" L.custom_on_nameplate_fixate_desc = "Show an icon on the nameplate of Frostbound Devoted that are fixed on you.\n\nRequires the use of Enemy Nameplates and a supported nameplate addon (KuiNameplates, Plater)." @@ -98,8 +96,8 @@ function mod:GetOptions() [348760] = CL.meteor, -- Frost Blast (Meteor) [354289] = L.miasma, -- Necrotic Miasma (Miasma) [352293] = self:SpellName(249436), -- Necrotic Destruction (Destruction) - [355055] = L.glacial_winds, -- Glacial Winds (Tornadoes) - [355127] = L.foul_winds, -- Foul Winds (Pushback) + [355055] = CL.tornadoes, -- Glacial Winds (Tornadoes) + [355127] = CL.pushback, -- Foul Winds (Pushback) } end @@ -509,15 +507,15 @@ function mod:VengefulDestruction(args) -- XXX Starts when the first person enters, should we keep this or just ditch it? -- local remnant = self:GetBossId(176929) -- was only ever boss2, but just to make sure -- if remnant and self:GetHealth(remnant) < 34 then -- final stage 2 - -- --self:CDBar(355055, 3, L.glacial_winds) -- Glacial Winds + -- --self:CDBar(355055, 3, CL.tornadoes) -- Glacial Winds -- --self:CDBar(352379, 11) -- Freezing Blast -- -- if self:Mythic() then - -- -- self:CDBar(355127, 7, L.foul_winds) -- Foul Winds + -- -- self:CDBar(355127, 7, CL.pushback) -- Foul Winds -- -- end -- else -- self:CDBar(352379, self:Mythic() and 3 or 7) -- Freezing Blast -- if self:Mythic() then - -- self:CDBar(355127, 7, L.foul_winds) -- Foul Winds + -- self:CDBar(355127, 7, CL.pushback) -- Foul Winds -- end -- end end @@ -530,8 +528,8 @@ function mod:NecroticSurgeApplied(args) end self:StopBar(CL.cast:format(self:SpellName(249436))) -- Destruction self:StopBar(352379) -- Freezing Blast - self:StopBar(L.glacial_winds) -- Glacial Winds - self:StopBar(L.foul_winds) -- Foul Winds + self:StopBar(CL.tornadoes) -- Glacial Winds + self:StopBar(CL.pushback) -- Foul Winds if self:GetStage() == 2 then self:SetStage(1) soulFractureCount = 1 @@ -570,16 +568,16 @@ end function mod:GlacialWinds(args) if inPhylactery then - self:Message(args.spellId, "cyan", L.glacial_winds) - self:CDBar(args.spellId, 13.5, L.glacial_winds) + self:Message(args.spellId, "cyan", CL.tornadoes) + self:CDBar(args.spellId, 13.5, CL.tornadoes) self:PlaySound(args.spellId, "info") end end function mod:FoulWinds(args) if inPhylactery then - self:Message(args.spellId, "yellow", L.foul_winds) - self:CDBar(args.spellId, 25.5, L.foul_winds) + self:Message(args.spellId, "yellow", CL.pushback) + self:CDBar(args.spellId, 25.5, CL.pushback) self:PlaySound(args.spellId, "alert") end end @@ -592,8 +590,8 @@ function mod:UndyingWrath(args) end self:StopBar(352379) -- Freezing Blast - self:StopBar(L.glacial_winds) -- Glacial Winds - self:StopBar(L.foul_winds) -- Foul Winds + self:StopBar(CL.tornadoes) -- Glacial Winds + self:StopBar(CL.pushback) -- Foul Winds end function mod:OnslaughtOfTheDamned(args) diff --git a/SanctumOfDomination/Locales/deDE.lua b/SanctumOfDomination/Locales/deDE.lua index bce9446..b86cd49 100644 --- a/SanctumOfDomination/Locales/deDE.lua +++ b/SanctumOfDomination/Locales/deDE.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "deDE") if L then L.chains = "Ketten" -- Short for Dragging Chains - L.pool = "Lache" -- Spreading Misery - L.pools = "Lachen" -- Spreading Misery (multiple) L.death_gaze = "Todesblick" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "Fixieren-Symbol an gegnerischen Namensplaketten" L.custom_on_nameplate_fixate_desc = "Zeigt ein Symbol an der Namensplakette der Dich fixierenden Dunklen Wache an.\n\nBenötigt die Nutzung von Namensplaketten sowie ein unterstütztes Addon (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" L.chains = "Ketten" -- Short for Domination Chains L.chain = "Kette" -- Single Domination Chain L.darkness = "Dunkelheit" -- Short for Veil of Darkness L.arrow = "Pfeil" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "Welle" -- Short for Haunting Wave L.dread = "Angst" -- Short for Crushing Dread - L.orbs = "Kugeln" -- Dark Communion - L.curse = "Fluch" -- Short for Curse of Lethargy - L.pools = "Lachen" -- Banshee's Bane L.scream = "Kreischen" -- Banshee Scream L.knife_fling = "Messer fliegen!" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "deDE") diff --git a/SanctumOfDomination/Locales/esES.lua b/SanctumOfDomination/Locales/esES.lua index 8989fd3..e09bb10 100644 --- a/SanctumOfDomination/Locales/esES.lua +++ b/SanctumOfDomination/Locales/esES.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "esES") if L then L.chains = "Cadenas" -- Short for Dragging Chains - L.pool = "Charco" -- Spreading Misery - L.pools = "Charcos" -- Spreading Misery (multiple) L.death_gaze = "Mirada Aniquiladora" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "Icono placa de nombre Fijado" L.custom_on_nameplate_fixate_desc = "Muestra un icono en la placa de nombre del Centinela Oscuro que se fija en ti.\n\nRequiere el uso de Placa de nombre enemigas y un addon de placas de nombres soportado (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" L.chains = "Cadenas" -- Short for Domination Chains L.chain = "Cadena" -- Single Domination Chain L.darkness = "Oscuridad" -- Short for Veil of Darkness L.arrow = "Flecha" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "Ola" -- Short for Haunting Wave L.dread = "Terror" -- Short for Crushing Dread - L.orbs = "Orbes" -- Dark Communion - L.curse = "Maldicion" -- Short for Curse of Lethargy - L.pools = "Charcos" -- Banshee's Bane L.scream = "Alarido" -- Banshee Scream L.knife_fling = "¡Cuchillas fuera!" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "esES") diff --git a/SanctumOfDomination/Locales/esMX.lua b/SanctumOfDomination/Locales/esMX.lua index 67b8d73..b080d96 100644 --- a/SanctumOfDomination/Locales/esMX.lua +++ b/SanctumOfDomination/Locales/esMX.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "esMX") if L then --L.chains = "Chains" -- Short for Dragging Chains - --L.pool = "Pool" -- Spreading Misery - --L.pools = "Pools" -- Spreading Misery (multiple) --L.death_gaze = "Death Gaze" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then -- L.custom_on_nameplate_fixate = "Fixate Nameplate Icon" -- L.custom_on_nameplate_fixate_desc = "Show an icon on the nameplate of Dark Sentinels that are fixed on you.\n\nRequires the use of Enemy Nameplates and a supported nameplate addon (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" -- L.chains = "Chains" -- Short for Domination Chains -- L.chain = "Chain" -- Single Domination Chain -- L.darkness = "Darkness" -- Short for Veil of Darkness -- L.arrow = "Arrow" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit -- L.wave = "Wave" -- Short for Haunting Wave -- L.dread = "Dread" -- Short for Crushing Dread - -- L.orbs = "Orbs" -- Dark Communion - -- L.curse = "Curse" -- Short for Curse of Lethargy - -- L.pools = "Pools" -- Banshee's Bane -- L.scream = "Scream" -- Banshee Scream -- L.knife_fling = "Knives out!" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "esMX") diff --git a/SanctumOfDomination/Locales/frFR.lua b/SanctumOfDomination/Locales/frFR.lua index 7803695..54e01a6 100644 --- a/SanctumOfDomination/Locales/frFR.lua +++ b/SanctumOfDomination/Locales/frFR.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "frFR") if L then L.chains = "Chaînes" -- Short for Dragging Chains - L.pool = "Pool" -- Spreading Misery - L.pools = "Pools" -- Spreading Misery (multiple) L.death_gaze = "Rayon" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "Icône de Rage" L.custom_on_nameplate_fixate_desc = "Affiche une icône au dessus de la Sentinelle sombre si vous êtes sa cible. \n\nNécessite un addon de Nameplates (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" L.chains = "Chaînes" -- Short for Domination Chains L.chain = "Chaîne" -- Single Domination Chain L.darkness = "Voile" -- Short for Veil of Darkness L.arrow = "Flèche" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "Vague" -- Short for Haunting Wave L.dread = "Effroi" -- Short for Crushing Dread - L.orbs = "Orbes" -- Dark Communion - L.curse = "Malédiction" -- Short for Curse of Lethargy - L.pools = "Fléau" -- Banshee's Bane L.scream = "Cri" -- Banshee Scream L.knife_fling = "Poignards, Sortez !" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "frFR") diff --git a/SanctumOfDomination/Locales/itIT.lua b/SanctumOfDomination/Locales/itIT.lua index f22599c..f02d020 100644 --- a/SanctumOfDomination/Locales/itIT.lua +++ b/SanctumOfDomination/Locales/itIT.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "itIT") if L then L.chains = "Catene" -- Short for Dragging Chains - L.pool = "Pozza" -- Miseria Dilagante - L.pools = "Pozze" -- Miseria Dilagante (multiplo) L.death_gaze = "Sguardo della Morte" -- Corto per Sguardo della Morte Titanico end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "Icona Nameplate Rabbia" L.custom_on_nameplate_fixate_desc = "Mostra un'icona sul nameplate della Sentinella Oscura che ha preso di mira te.\n\nRichiede l'uso dei Nameplates del nemico e un'appon per nameplates supportato (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" L.chains = "Catene" -- Short for Domination Chains L.chain = "Catena" -- Single Domination Chain L.darkness = "Oscurità" -- Short for Veil of Darkness L.arrow = "Freccia" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "Ondata" -- Short for Haunting Wave L.dread = "Terrore" -- Short for Crushing Dread - L.orbs = "Sfere" -- Dark Communion - L.curse = "Maledizione" -- Short for Curse of Lethargy - L.pools = "Pozze" -- Banshee's Bane L.scream = "Urlo" -- Banshee Scream L.knife_fling = "Coltelli!" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "itIT") diff --git a/SanctumOfDomination/Locales/koKR.lua b/SanctumOfDomination/Locales/koKR.lua index 9e5d1f0..1114551 100644 --- a/SanctumOfDomination/Locales/koKR.lua +++ b/SanctumOfDomination/Locales/koKR.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "koKR") if L then L.chains = "사슬" -- Short for Dragging Chains - L.pool = "바닥 깔기" -- Spreading Misery - L.pools = "바닥 깔기" -- Spreading Misery (multiple) L.death_gaze = "죽음의 시선" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then --L.custom_on_nameplate_fixate = "시선집중 네임플레이트 아이콘" --L.custom_on_nameplate_fixate_desc = "Show an icon on the nameplate of Dark Sentinels that are fixed on you.\n\nRequires the use of Enemy Nameplates and a supported nameplate addon (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" L.chains = "사슬" -- Short for Domination Chains L.chain = "사슬" -- Single Domination Chain L.darkness = "장막" -- Short for Veil of Darkness L.arrow = "화살" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "파도" -- Short for Haunting Wave L.dread = "공포" -- Short for Crushing Dread - L.orbs = "보주" -- Dark Communion - L.curse = "저주" -- Short for Curse of Lethargy - L.pools = "파멸" -- Banshee's Bane L.scream = "비명" -- Banshee Scream L.knife_fling = "비수 조심!" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "koKR") diff --git a/SanctumOfDomination/Locales/ptBR.lua b/SanctumOfDomination/Locales/ptBR.lua index 55c2797..bf5fd0c 100644 --- a/SanctumOfDomination/Locales/ptBR.lua +++ b/SanctumOfDomination/Locales/ptBR.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "ptBR") if L then L.chains = "Correntes" -- Short for Dragging Chains - L.pool = "Poça" -- Spreading Misery - L.pools = "Poças" -- Spreading Misery (multiple) L.death_gaze = "Mirada da Morte" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "Ícone de placa de identificação para Fixação" L.custom_on_nameplate_fixate_desc = "Mostra um ícone na placa de identificação para quando as Sentinelas Sombrias estão fixadas em você.\n\nRequer o uso de Placas de Identificação Inimigas e um addon suportado (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" L.chains = "Correntes" -- Short for Domination Chains L.chain = "Corrente" -- Single Domination Chain L.darkness = "Trevas" -- Short for Veil of Darkness L.arrow = "Seta" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "Onda" -- Short for Haunting Wave L.dread = "Pavor" -- Short for Crushing Dread - L.orbs = "Orbes" -- Dark Communion - L.curse = "Maldição" -- Short for Curse of Lethargy - L.pools = "Poças" -- Banshee's Bane L.scream = "Grito" -- Banshee Scream L.knife_fling = "Olha a faca!" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "ptBR") diff --git a/SanctumOfDomination/Locales/ruRU.lua b/SanctumOfDomination/Locales/ruRU.lua index 9b73b8c..17fcb1b 100644 --- a/SanctumOfDomination/Locales/ruRU.lua +++ b/SanctumOfDomination/Locales/ruRU.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "ruRU") if L then L.chains = "Цепи" -- Short for Dragging Chains - L.pool = "Лужа" -- Spreading Misery - L.pools = "Лужи" -- Spreading Misery (multiple) L.death_gaze = "Взгляд смерти" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "Метка для преследующего часового" L.custom_on_nameplate_fixate_desc = "Показывать метку на Темном часовом, который преследует вас.\n\nТребует включённых индикаторов здоровья врагов и соответствующего аддона (KuiNameplates, Plater)." + --L.intermission_chains = "Intermission Chains" L.chains = "Цепи" -- Short for Domination Chains L.chain = "Цепь" -- Single Domination Chain L.darkness = "Завеса тьмы" -- Short for Veil of Darkness L.arrow = "Стрела" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "Волна" -- Short for Haunting Wave L.dread = "Ужас" -- Short for Crushing Dread - L.orbs = "Сферы" -- Dark Communion - L.curse = "Проклятие летаргии" -- Short for Curse of Lethargy - L.pools = "Лужи" -- Banshee's Bane L.scream = "Вой банши" -- Banshee Scream L.knife_fling = "Ножи смерти" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "ruRU") diff --git a/SanctumOfDomination/Locales/zhCN.lua b/SanctumOfDomination/Locales/zhCN.lua index 782fc75..32e7ad6 100644 --- a/SanctumOfDomination/Locales/zhCN.lua +++ b/SanctumOfDomination/Locales/zhCN.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "zhCN") if L then L.chains = "锁链" -- Short for Dragging Chains - L.pool = "黑水" -- Spreading Misery - L.pools = "黑水" -- Spreading Misery (multiple) L.death_gaze = "死亡凝视" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "追击姓名板图标" L.custom_on_nameplate_fixate_desc = "黑暗哨兵追击你时在姓名板显示一个图标。\n\n需要使用敌对姓名板和支持姓名板的插件(KuiNameplates,Plater)。" + --L.intermission_chains = "Intermission Chains" L.chains = "锁链" -- Short for Domination Chains L.chain = "锁链" -- Single Domination Chain L.darkness = "黑暗" -- Short for Veil of Darkness L.arrow = "箭" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "妖魂" -- Short for Haunting Wave L.dread = "压迫" -- Short for Crushing Dread - L.orbs = "宝珠" -- Dark Communion - L.curse = "诅咒" -- Short for Curse of Lethargy - L.pools = "池" -- Banshee's Bane L.scream = "尖啸" -- Banshee Scream L.knife_fling = "刀飞出!" -- "Death-touched blades fling out" + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "zhCN") diff --git a/SanctumOfDomination/Locales/zhTW.lua b/SanctumOfDomination/Locales/zhTW.lua index fb85b7e..a71a6f4 100644 --- a/SanctumOfDomination/Locales/zhTW.lua +++ b/SanctumOfDomination/Locales/zhTW.lua @@ -15,8 +15,6 @@ end L = BigWigs:NewBossLocale("The Eye of the Jailer", "zhTW") if L then L.chains = "鎖鏈" -- Short for Dragging Chains - L.pool = "黑水" -- Spreading Misery - L.pools = "黑水" -- Spreading Misery (multiple) L.death_gaze = "死亡凝視" -- Short for Titanic Death Gaze end @@ -119,18 +117,22 @@ if L then L.custom_on_nameplate_fixate = "憤怒名條圖示" L.custom_on_nameplate_fixate_desc = "在追擊你的黑暗哨兵名條上顯示追擊圖示。\n\n需要開啟敵方名條,並使用支援此功能的名條插件(如KuiNameplates、Plater)。" + --L.intermission_chains = "Intermission Chains" L.chains = "鎖鏈" -- Short for Domination Chains L.chain = "鎖鏈" -- Single Domination Chain L.darkness = "黑暗" -- Short for Veil of Darkness L.arrow = "悲鳴箭" -- Short for Wailing Arrow + --L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "波浪" -- Short for Haunting Wave L.dread = "碎擊" -- Short for Crushing Dread - L.orbs = "球" -- Dark Communion; 可能要改 - L.curse = "詛咒" -- Short for Curse of Lethargy - L.pools = "災禍" -- Banshee's Bane L.scream = "號叫" -- Banshee Scream L.knife_fling = "飛刀!" -- "Death-touched blades fling out"; 傳奇模式的死亡利刃射出計時 + --L.bridges = "Bridges" + --L.rive_counter = "%s (%d/%d)" + --L.soaks = "Soaks" -- Merciless + --L.count_x = "%s (x%d)(%d)" + --L.shroud_active = "Shroud (%d) - %.1f%%!" end L = BigWigs:NewBossLocale("Sanctum of Domination Affixes", "zhTW") diff --git a/SanctumOfDomination/SylvanasWindrunner.lua b/SanctumOfDomination/SylvanasWindrunner.lua index 090f528..1585974 100644 --- a/SanctumOfDomination/SylvanasWindrunner.lua +++ b/SanctumOfDomination/SylvanasWindrunner.lua @@ -133,10 +133,6 @@ if L then L.arrow_done = "DONE" -- Message when the arrow has hit L.wave = "Wave" -- Short for Haunting Wave L.dread = "Dread" -- Short for Crushing Dread - L.orbs = "Orbs" -- Dark Communion - L.curse = "Curse" -- Short for Curse of Lethargy - L.pool = "Pool" -- Banshee's Bane / Bane Arrows - L.pools = "Pools" -- Banshee's Bane / Bane Arrows L.scream = "Scream" -- Banshee Scream L.knife_fling = "Knives out!" -- "Death-touched blades fling out" @@ -203,7 +199,7 @@ function mod:GetOptions() },{ ["stages"] = "general", [347504] = -23057, -- Stage One: A Cycle of Hatred - [348145] = -22891, -- Intermission: A Monument to our Suffering + [353417] = -22891, -- Intermission: A Monument to our Suffering [350857] = -23067, -- Stage Two: The Banshee Queen [353929] = -22890, -- Stage Three: The Freedom of Choice [358704] = "mythic", @@ -214,11 +210,11 @@ function mod:GetOptions() [358704] = L.arrow, -- Black Arrow (Arrow) [352271] = L.wave, -- Haunting Wave (Wave) [351117] = L.dread, -- Crushing Dread (Dread) - [351353] = L.orbs, -- Summon Decrepit Orbs - [356021] = L.orbs, -- Dark Communion (Orbs) - [351939] = L.curse, -- Curse of Lethargy (Curse) - [353929] = L.pools, -- Banshee's Bane (Pools) - [354011] = L.pools, -- Bane Arrows (Pools) + [351353] = CL.orbs, -- Summon Decrepit Orbs (Orbs) + [356021] = CL.orbs, -- Dark Communion (Orbs) + [351939] = CL.curse, -- Curse of Lethargy (Curse) + [353929] = CL.pools, -- Banshee's Bane (Pools) + [354011] = CL.pools, -- Bane Arrows (Pools) [353952] = L.scream, -- Banshee Scream (Scream) [358711] = CL.fixate, -- Rage (Fixate) } @@ -374,9 +370,9 @@ function mod:DarkCommunion(args) local unit = self:GetUnitIdByGUID(args.sourceGUID) if unit then if IsItemInRange(116139, unit) then -- 50yd - self:Message(args.spellId, "orange", L.orbs) + self:Message(args.spellId, "orange", CL.orbs) self:PlaySound(args.spellId, "long") - self:CDBar(args.spellId, 16.5, L.orbs) + self:CDBar(args.spellId, 16.5, CL.orbs) end end end @@ -968,7 +964,7 @@ end function mod:CommanderDeath(args) if args.mobId == 177891 then -- Mawforged Summoner - self:StopBar(L.orbs) -- Summon Decrepit Orbs / Dark Communion + self:StopBar(CL.orbs) -- Summon Decrepit Orbs / Dark Communion elseif args.mobId == 177893 then -- Mawforged Colossus self:StopBar(351591) -- Filth self:StopBar(351562) -- Expulsion @@ -1016,21 +1012,21 @@ function mod:SummonDecrepitOrbs(args) local unit = self:GetUnitIdByGUID(args.sourceGUID) if unit then if IsItemInRange(116139, unit) then -- 50yd - self:Message(args.spellId, "orange", L.orbs) + self:Message(args.spellId, "orange", CL.orbs) self:PlaySound(args.spellId, "long") - self:Bar(args.spellId, 16, L.orbs) + self:Bar(args.spellId, 16, CL.orbs) end end else - self:Message(args.spellId, "orange", L.orbs) + self:Message(args.spellId, "orange", CL.orbs) self:PlaySound(args.spellId, "long") - self:Bar(args.spellId, 16, L.orbs) + self:Bar(args.spellId, 16, CL.orbs) end end function mod:CurseOfLethargyApplied(args) if self:Me(args.destGUID) then - self:PersonalMessage(args.spellId, nil, L.curse) + self:PersonalMessage(args.spellId, nil, CL.curse) self:PlaySound(args.spellId, "alarm") end end @@ -1111,16 +1107,16 @@ end function mod:BansheesBaneApplied(args) if self:Me(args.destGUID) then local amount = args.amount or 1 - self:StackMessage(args.spellId, "blue", args.destName, amount, amount, amount > 1 and L.pools or L.pool) + self:StackMessage(args.spellId, "blue", args.destName, amount, amount, amount > 1 and CL.pools or CL.pool) self:PlaySound(args.spellId, "alarm") end end function mod:BaneArrows(args) - self:Message(args.spellId, "yellow", CL.spawning:format(CL.count:format(L.pools, baneArrowsCount))) + self:Message(args.spellId, "yellow", CL.spawning:format(CL.count:format(CL.pools, baneArrowsCount))) self:PlaySound(args.spellId, "alert") baneArrowsCount = baneArrowsCount + 1 - self:Bar(args.spellId, stageThreeTimers[args.spellId][baneArrowsCount], CL.count:format(L.pools, baneArrowsCount)) + self:Bar(args.spellId, stageThreeTimers[args.spellId][baneArrowsCount], CL.count:format(CL.pools, baneArrowsCount)) end function mod:BansheesHeartseekerApplied(args) diff --git a/SanctumOfDomination/TheEyeOfTheJailer.lua b/SanctumOfDomination/TheEyeOfTheJailer.lua index fd4715f..db35046 100644 --- a/SanctumOfDomination/TheEyeOfTheJailer.lua +++ b/SanctumOfDomination/TheEyeOfTheJailer.lua @@ -23,8 +23,6 @@ local stage = 1 local L = mod:GetLocale() if L then L.chains = "Chains" -- Short for Dragging Chains - L.pool = "Pool" -- Spreading Misery - L.pools = "Pools" -- Spreading Misery (multiple) L.death_gaze = "Death Gaze" -- Short for Titanic Death Gaze L.corruption = mod:SpellName(172) -- Corruption // Short for Slothful Corruption L.slow = mod:SpellName(31589) -- Slow @@ -54,7 +52,7 @@ function mod:GetOptions() 355232, -- Scorn and Ire },{ ["stages"] = "general", - [350803] = mod:SpellName(-22896), -- Stage One: His Gaze Upon You + [350828] = mod:SpellName(-22896), -- Stage One: His Gaze Upon You [349028] = mod:SpellName(-22897), -- Stage Two: Double Vision [351413] = mod:SpellName(-23375), -- Stage Three: Immediate Extermination [350604] = "mythic", -- Mythic @@ -63,7 +61,7 @@ function mod:GetOptions() [349028] = L.death_gaze, -- Titanic Death Gaze (Death Gaze) [350847] = CL.beam, -- Desolation Beam (Beam) [350713] = L.corruption, -- Slothful Corruption (Corruption) - [351827] = L.pools, -- Spreading Misery (Pools) + [351827] = CL.pools, -- Spreading Misery (Pools) [351413] = CL.laser, -- Annihilating Glare (Laser) [350604] = L.slow, -- Hopeless Lethargy (Slow) } @@ -179,7 +177,7 @@ function mod:StygianDarkshieldApplied() self:StopBar(L.slow) self:Bar(350847, self:Mythic() and 21.1 or 8.5, CL.beam) -- Desolation Beam - self:Bar(351827, 15, L.pools) -- Spreading Misery + self:Bar(351827, 15, CL.pools) -- Spreading Misery self:Bar(349028, self:Mythic() and 28.1 or 17, L.death_gaze) -- Titanic Death Gaze self:Bar(350713, 21, L.corruption) -- Slothful Corruption if self:Mythic() then @@ -256,15 +254,15 @@ do local t = args.time if t-prev > 5 then -- Both adds cast it seperately prev = t - self:Bar(351827, 12, L.pools) + self:Bar(351827, 12, CL.pools) end end end function mod:SpreadingMiseryApplied(args) if self:Me(args.destGUID) then - self:PersonalMessage(args.spellId, nil, L.pool) - self:Say(args.spellId, L.pool) + self:PersonalMessage(args.spellId, nil, CL.pool) + self:Say(args.spellId, CL.pool) self:SayCountdown(args.spellId, 5) self:PlaySound(args.spellId, "warning") end @@ -278,7 +276,7 @@ end function mod:StygianDarkshieldRemoved() self:StopBar(CL.beam) -- Desolation Beam - self:StopBar(L.pools) -- Spreading Misery + self:StopBar(CL.pools) -- Spreading Misery self:StopBar(L.death_gaze) -- Titanic Death Gaze self:StopBar(L.corruption) -- Slothful Corruption diff --git a/SepulcherOfTheFirstOnes/Affixes.lua b/SepulcherOfTheFirstOnes/Affixes.lua index 19166de..0701d3a 100644 --- a/SepulcherOfTheFirstOnes/Affixes.lua +++ b/SepulcherOfTheFirstOnes/Affixes.lua @@ -62,7 +62,7 @@ local bar_icon = bar_icon_texture local L = mod:GetLocale() if L then L.custom_on_bar_icon = "Bar Icon" - L.custom_on_bar_icon_desc = bar_icon_texture.."Show the Fated Raid icon on bars." + L.custom_on_bar_icon_desc = "Show the Fated Raid icon on bars." L.chaotic_essence = "Essence" L.creation_spark = "Sparks" @@ -91,10 +91,14 @@ end function mod:VerifyEnable() if C_ModifiedInstance.GetModifiedInstanceInfoFromMapID(self.instanceId) then - return true + return true end end +function mod:OnRegister() + L.custom_on_bar_icon_desc = bar_icon_texture .. L.custom_on_bar_icon_desc +end + function mod:OnBossEnable() self:RegisterMessage("BigWigs_OnBossEngage", "OnBossEngage") self:RegisterEvent("ENCOUNTER_END") diff --git a/SepulcherOfTheFirstOnes/AnduinWrynn.lua b/SepulcherOfTheFirstOnes/AnduinWrynn.lua index 5f69383..5f3d869 100644 --- a/SepulcherOfTheFirstOnes/AnduinWrynn.lua +++ b/SepulcherOfTheFirstOnes/AnduinWrynn.lua @@ -96,7 +96,6 @@ if L then L.dire_blasphemy = "Marks" L.remnant_active = "Remnant Active" - L.march_counter = "%s (%d/8)" end -------------------------------------------------------------------------------- @@ -109,7 +108,6 @@ function mod:GetOptions() return { "stages", 362405, -- Kingsmourne Hungers - 362055, -- Lost Soul anduinsHopeMarker, 361989, -- Blasphemy "custom_off_repeating_blasphemy", @@ -431,7 +429,7 @@ function mod:NecroticDetonation(args) end function mod:MarchOfTheDamned() - self:Message(363233, "cyan", L.march_counter:format(L.march_of_the_damned, marchCount)) + self:Message(363233, "cyan", CL.count_amount:format(L.march_of_the_damned, marchCount, 8)) self:PlaySound(363233, "info") marchCount = marchCount + 1 -- if marchCount < 9 then diff --git a/SepulcherOfTheFirstOnes/Halondrus.lua b/SepulcherOfTheFirstOnes/Halondrus.lua index 77ffffe..0234011 100644 --- a/SepulcherOfTheFirstOnes/Halondrus.lua +++ b/SepulcherOfTheFirstOnes/Halondrus.lua @@ -93,7 +93,7 @@ function mod:GetOptions() },{ ["stages"] = "general", [360115] = -23915, -- Stage One: The Reclaimer - [362056] = -23917, -- Stage Two: The Shimmering Cliffs + [364979] = -23917, -- Stage Two: The Shimmering Cliffs [368529] = -24707, -- Stage Three: A Broken Cycle [368969] = "mythic", },{ @@ -359,7 +359,7 @@ function mod:ReclamationForm(args) self:StopBar(CL.count:format(CL.intermission, reclamationFormCount)) self:StopBar(CL.count:format(L.crushing_prism, prismCount)) self:StopBar(CL.count:format(L.earthbreaker_missiles, misslesCount)) - self:StopBar(CL.count:format(self:SpellName(362056), shatterCount)) + self:StopBar(CL.count:format(self:SpellName(364979), shatterCount)) self:StopBar(CL.count:format(CL.beam, beamCount)) seismicTremorsCount = 1 diff --git a/SepulcherOfTheFirstOnes/Lihuvim.lua b/SepulcherOfTheFirstOnes/Lihuvim.lua index e5accc3..a7dba35 100644 --- a/SepulcherOfTheFirstOnes/Lihuvim.lua +++ b/SepulcherOfTheFirstOnes/Lihuvim.lua @@ -64,7 +64,7 @@ function mod:GetOptions() [368027] = CL.tank_combo, -- Resonance (Tank Combo) [364652] = L.protoform_cascade, -- Protoform Cascade (Circle) [363088] = L.cosmic_shift, -- Cosmic Shift (Pushback) - [362601] = L.unstable_mote, -- Unstable Mote (Motes) + [362622] = L.unstable_mote, -- Unstable Mote (Motes) [363795] = CL.bombs, -- Deconstructing Energy (Bombs) [360869] = CL.fixate, -- Requisitioned (Fixate) } diff --git a/SepulcherOfTheFirstOnes/Locales/deDE.lua b/SepulcherOfTheFirstOnes/Locales/deDE.lua index 7ea8d4e..6330f41 100644 --- a/SepulcherOfTheFirstOnes/Locales/deDE.lua +++ b/SepulcherOfTheFirstOnes/Locales/deDE.lua @@ -141,11 +141,11 @@ if L then L.azeroth_new_health_minus = "Azeroths Lebenskraft: -%.1f%% (%d)" L.mythic_blood_soak_stage_1 = "Phase 1 Blut-Soak Timer" - L.mythic_blood_soak_stage_1_desc = "Zeigt eine Leiste mit guten Zeitpunkten zum Heilen von Azeroth an, genutzt von Echo beim ersten Kill" + L.mythic_blood_soak_stage_1_desc = "Zeigt eine Leiste mit guten Zeitpunkten zum Heilen von Azeroth an, genutzt von Echo beim ersten Kill." L.mythic_blood_soak_stage_2 = "Phase 2 Blut-Soak Timer" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "Zeigt eine Leiste mit guten Zeitpunkten zum Heilen von Azeroth an, genutzt von Echo beim ersten Kill." L.mythic_blood_soak_stage_3 = "Phase 3 Blut-Soak Timer" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "Zeigt eine Leiste mit guten Zeitpunkten zum Heilen von Azeroth an, genutzt von Echo beim ersten Kill." L.mythic_blood_soak_bar = "Azeroth heilen" diff --git a/SepulcherOfTheFirstOnes/Locales/esES.lua b/SepulcherOfTheFirstOnes/Locales/esES.lua index 6484b2d..a5aca4f 100644 --- a/SepulcherOfTheFirstOnes/Locales/esES.lua +++ b/SepulcherOfTheFirstOnes/Locales/esES.lua @@ -31,6 +31,8 @@ if L then --L.custom_on_ring_timers = "Individual Halo Timers" --L.custom_on_ring_timers_desc = "Disintegration Halo triggers a set of rings, this will show bars for when each of the rings starts moving. Uses settings from Disintegration Halo." + + --L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "esES") @@ -87,6 +89,8 @@ if L then --L.bomb_dropped = "Bomb dropped" --L.volatile_charges_new = "New Bombs!" + + --L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Lords of Dread", "esES") @@ -141,11 +145,11 @@ if L then -- L.azeroth_new_health_minus = "Azeroth Health: -%.1f%% (%d)" -- L.mythic_blood_soak_stage_1 = "Stage 1 Blood Soak timings" - -- L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill" + -- L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." -- L.mythic_blood_soak_stage_2 = "Stage 2 Blood Soak timings" - -- L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + -- L.mythic_blood_soak_stage_2_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." -- L.mythic_blood_soak_stage_3 = "Stage 3 Blood Soak timings" - -- L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + -- L.mythic_blood_soak_stage_3_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." -- L.mythic_blood_soak_bar = "Heal Azeroth" -- L.floors_open = "Floors Open" diff --git a/SepulcherOfTheFirstOnes/Locales/esMX.lua b/SepulcherOfTheFirstOnes/Locales/esMX.lua index dd51aba..747fa84 100644 --- a/SepulcherOfTheFirstOnes/Locales/esMX.lua +++ b/SepulcherOfTheFirstOnes/Locales/esMX.lua @@ -31,6 +31,8 @@ if L then --L.custom_on_ring_timers = "Individual Halo Timers" --L.custom_on_ring_timers_desc = "Disintegration Halo triggers a set of rings, this will show bars for when each of the rings starts moving. Uses settings from Disintegration Halo." + + --L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "esMX") @@ -87,6 +89,8 @@ if L then -- L.bomb_dropped = "Bomb dropped" --L.volatile_charges_new = "New Bombs!" + + --L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Lords of Dread", "esMX") @@ -141,11 +145,11 @@ if L then -- L.azeroth_new_health_minus = "Azeroth Health: -%.1f%% (%d)" -- L.mythic_blood_soak_stage_1 = "Stage 1 Blood Soak timings" - -- L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill" + -- L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." -- L.mythic_blood_soak_stage_2 = "Stage 2 Blood Soak timings" - -- L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + -- L.mythic_blood_soak_stage_2_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." -- L.mythic_blood_soak_stage_3 = "Stage 3 Blood Soak timings" - -- L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + -- L.mythic_blood_soak_stage_3_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." -- L.mythic_blood_soak_bar = "Heal Azeroth" -- L.floors_open = "Floors Open" diff --git a/SepulcherOfTheFirstOnes/Locales/frFR.lua b/SepulcherOfTheFirstOnes/Locales/frFR.lua index 13d2df9..1e7e90c 100644 --- a/SepulcherOfTheFirstOnes/Locales/frFR.lua +++ b/SepulcherOfTheFirstOnes/Locales/frFR.lua @@ -31,6 +31,8 @@ if L then L.custom_on_ring_timers = "Décomptes Individuels de Halo de Désintégration" L.custom_on_ring_timers_desc = "Halo de Désintégration va déclencher un combo d'anneaux. Ainsi des barres seront affichées pour chaque anneau qui apparaîtra." + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "frFR") @@ -87,6 +89,8 @@ if L then L.bomb_dropped = "Bombe posée" --L.volatile_charges_new = "New Bombs!" + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Lords of Dread", "frFR") @@ -140,12 +144,12 @@ if L then L.azeroth_new_health_plus = "Vie d'Azeroth: +%.1f%% (%d)" L.azeroth_new_health_minus = "Vie d'Azeroth: -%.1f%% (%d)" - L.mythic_blood_soak_stage_1 = "Stage 1 Blood Soak timings" - L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill" - L.mythic_blood_soak_stage_2 = "Stage 2 Blood Soak timings" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc - L.mythic_blood_soak_stage_3 = "Stage 3 Blood Soak timings" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + --L.mythic_blood_soak_stage_1 = "Stage 1 Blood Soak timings" + --L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." + --L.mythic_blood_soak_stage_2 = "Stage 2 Blood Soak timings" + --L.mythic_blood_soak_stage_2_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." + --L.mythic_blood_soak_stage_3 = "Stage 3 Blood Soak timings" + --L.mythic_blood_soak_stage_3_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." L.mythic_blood_soak_bar = "Soigner Azeroth" L.floors_open = "Sol Ouvert" diff --git a/SepulcherOfTheFirstOnes/Locales/itIT.lua b/SepulcherOfTheFirstOnes/Locales/itIT.lua index fd75d89..741cc21 100644 --- a/SepulcherOfTheFirstOnes/Locales/itIT.lua +++ b/SepulcherOfTheFirstOnes/Locales/itIT.lua @@ -31,6 +31,8 @@ if L then L.custom_on_ring_timers = "Timer Individuali Aureola" L.custom_on_ring_timers_desc = "Aureola Disintegrante attiva una serie di anelli, verranno mostrate barre per quando questi anelli inizieranno a muoversi. Usa le impostazioni di Aureola Disintegrante." + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "itIT") @@ -87,6 +89,8 @@ if L then L.bomb_dropped = "Bomba rilasciata" L.volatile_charges_new = "Nuove Bombe!" + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Lords of Dread", "itIT") @@ -141,11 +145,11 @@ if L then L.azeroth_new_health_minus = "Salute di Azeroth: -%.1f%% (%d)" L.mythic_blood_soak_stage_1 = "Timing per gli assorbimenti del Sangue in Fase 1" - L.mythic_blood_soak_stage_1_desc = "Mostra una barra per illustrare quale è il timing migliore per curare Azeroth, usata dall'Eco dopo la prima uccisione" + L.mythic_blood_soak_stage_1_desc = "Mostra una barra per illustrare quale è il timing migliore per curare Azeroth, usata dall'Eco dopo la prima uccisione." L.mythic_blood_soak_stage_2 = "Timing per gli assorbimenti del Sangue in Fase 2" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "Mostra una barra per illustrare quale è il timing migliore per curare Azeroth, usata dall'Eco dopo la prima uccisione." L.mythic_blood_soak_stage_3 = "Timing per gli assorbimenti del Sangue in Fase 3" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "Mostra una barra per illustrare quale è il timing migliore per curare Azeroth, usata dall'Eco dopo la prima uccisione." L.mythic_blood_soak_bar = "Cura Azeroth" L.floors_open = "Pavimento Aperto" diff --git a/SepulcherOfTheFirstOnes/Locales/koKR.lua b/SepulcherOfTheFirstOnes/Locales/koKR.lua index 202b8e3..5afcb15 100644 --- a/SepulcherOfTheFirstOnes/Locales/koKR.lua +++ b/SepulcherOfTheFirstOnes/Locales/koKR.lua @@ -31,6 +31,8 @@ if L then L.custom_on_ring_timers = "개별 후광 타이머" L.custom_on_ring_timers_desc = "분해의 후광은 고리를 한 세트로 생성합니다. 이 옵션은 각각 고리가 언제 퍼지기 시작하는지 보여줍니다. 분해의 후광의 설정을 사용함." + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "koKR") @@ -87,6 +89,8 @@ if L then L.bomb_dropped = "폭탄 떨어트림" --L.volatile_charges_new = "New Bombs!" + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Lords of Dread", "koKR") @@ -143,9 +147,9 @@ if L then L.mythic_blood_soak_stage_1 = "1페이즈 피 흡수 타이밍" L.mythic_blood_soak_stage_1_desc = "아제로스를 힐할수 있는 좋은 타이밍이 언제인지 보이기. 에코가 첫킬 당시 사용." L.mythic_blood_soak_stage_2 = "2페이즈 피 흡수 타이밍" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "아제로스를 힐할수 있는 좋은 타이밍이 언제인지 보이기. 에코가 첫킬 당시 사용." L.mythic_blood_soak_stage_3 = "3페이즈 피 흡수 타이밍" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "아제로스를 힐할수 있는 좋은 타이밍이 언제인지 보이기. 에코가 첫킬 당시 사용." L.mythic_blood_soak_bar = "아제로스 힐" L.floors_open = "바닥 열림" diff --git a/SepulcherOfTheFirstOnes/Locales/ptBR.lua b/SepulcherOfTheFirstOnes/Locales/ptBR.lua index 9096c2c..754e017 100644 --- a/SepulcherOfTheFirstOnes/Locales/ptBR.lua +++ b/SepulcherOfTheFirstOnes/Locales/ptBR.lua @@ -31,6 +31,8 @@ if L then L.custom_on_ring_timers = "Temporizador de anel individual" L.custom_on_ring_timers_desc = "Halo Desintegrador aciona um conjunto de anéis, esta opção mostrará barras quando cada um dos anéis começar a se mover. Usa as configurações do Halo Desintegrador." + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "ptBR") @@ -87,6 +89,8 @@ if L then L.bomb_dropped = "Bomba Derrubada" --L.volatile_charges_new = "New Bombs!" + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Lords of Dread", "ptBR") @@ -141,11 +145,11 @@ if L then L.azeroth_new_health_minus = "Saúde de Azeroth: -%.1f%% (%d)" L.mythic_blood_soak_stage_1 = "Estágio 1, Temporizadores para soaks de sangue" - L.mythic_blood_soak_stage_1_desc = "Mostra uma barra com temporizadores quando está em um bom momento para curar azeroth, usado pela Echo em sua primeira morte" + L.mythic_blood_soak_stage_1_desc = "Mostra uma barra com temporizadores quando está em um bom momento para curar azeroth, usado pela Echo em sua primeira morte." L.mythic_blood_soak_stage_2 = "Estágio 2, Temporizadores para soaks de sangue" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "Mostra uma barra com temporizadores quando está em um bom momento para curar azeroth, usado pela Echo em sua primeira morte." L.mythic_blood_soak_stage_3 = "Estágio 3, Temporizadores para soaks de sangue" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "Mostra uma barra com temporizadores quando está em um bom momento para curar azeroth, usado pela Echo em sua primeira morte." L.mythic_blood_soak_bar = "Cure Azeroth" L.floors_open = "Abertura de chão" diff --git a/SepulcherOfTheFirstOnes/Locales/ruRU.lua b/SepulcherOfTheFirstOnes/Locales/ruRU.lua index ee16792..ad25544 100644 --- a/SepulcherOfTheFirstOnes/Locales/ruRU.lua +++ b/SepulcherOfTheFirstOnes/Locales/ruRU.lua @@ -31,6 +31,8 @@ if L then L.custom_on_ring_timers = "Индивидуальные таймеры для колец" L.custom_on_ring_timers_desc = "\"Ореол дезинтеграции\" создаёт набор колец. Выбрав эту настройку, вам будет показаны полосы для каждой полосы индивидуально. Использует настройки \"Ореол дезинтеграции\"." + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "ruRU") @@ -86,6 +88,8 @@ if L then L.bomb_dropped = "Бомба брошена" --L.volatile_charges_new = "New Bombs!" + + L.absorb_text = "%s (%.0f%%)" end L = BigWigs:NewBossLocale("Lords of Dread", "ruRU") @@ -140,11 +144,11 @@ if L then L.azeroth_new_health_minus = "Хп Азерот: -%.1f%% (%d)" L.mythic_blood_soak_stage_1 = "Таймеры крови Азерот 1 Фазы" - L.mythic_blood_soak_stage_1_desc = "Показывать полосы с хорошими таймингами, аналогичными первому килу Echo" + L.mythic_blood_soak_stage_1_desc = "Показывать полосы с хорошими таймингами, аналогичными первому килу Echo." L.mythic_blood_soak_stage_2 = "Таймеры крови Азерот 2 Фазы" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "Показывать полосы с хорошими таймингами, аналогичными первому килу Echo." L.mythic_blood_soak_stage_3 = "Таймеры крови Азерот 3 Фазы" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "Показывать полосы с хорошими таймингами, аналогичными первому килу Echo." L.mythic_blood_soak_bar = "Лечить Азерот" L.floors_open = "Открытие пола" diff --git a/SepulcherOfTheFirstOnes/Locales/zhCN.lua b/SepulcherOfTheFirstOnes/Locales/zhCN.lua index ccf45bb..a88a51d 100644 --- a/SepulcherOfTheFirstOnes/Locales/zhCN.lua +++ b/SepulcherOfTheFirstOnes/Locales/zhCN.lua @@ -31,6 +31,8 @@ if L then L.custom_on_ring_timers = "衰变光环计时条" L.custom_on_ring_timers_desc = "使用衰变光环设置:这是显示衰变光环在触发能量环时,开始移动的计时条。" + + L.absorb_text = "%s(%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "zhCN") @@ -69,6 +71,8 @@ if L then L.bomb_dropped = "炸弹掉落" L.volatile_charges_new = "新炸弹!" + + L.absorb_text = "%s(%.0f%%)" end L = BigWigs:NewBossLocale("Anduin Wrynn", "zhCN") @@ -143,9 +147,9 @@ if L then L.mythic_blood_soak_stage_1 = "第一阶段输血计时条" L.mythic_blood_soak_stage_1_desc = "显示输血计时条,根据 Echo 的首杀所使用的时间轴制作,会在合适的时间点提醒你治疗艾泽拉斯。" L.mythic_blood_soak_stage_2 = "第二阶段输血计时条" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "显示输血计时条,根据 Echo 的首杀所使用的时间轴制作,会在合适的时间点提醒你治疗艾泽拉斯。" L.mythic_blood_soak_stage_3 = "第三阶段输血计时条" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "显示输血计时条,根据 Echo 的首杀所使用的时间轴制作,会在合适的时间点提醒你治疗艾泽拉斯。" L.mythic_blood_soak_bar = "治疗艾泽拉斯" L.floors_open = "地板开启" diff --git a/SepulcherOfTheFirstOnes/Locales/zhTW.lua b/SepulcherOfTheFirstOnes/Locales/zhTW.lua index 309fa97..ce53315 100644 --- a/SepulcherOfTheFirstOnes/Locales/zhTW.lua +++ b/SepulcherOfTheFirstOnes/Locales/zhTW.lua @@ -31,6 +31,8 @@ if L then L.custom_on_ring_timers = "瓦解輝環計時器" L.custom_on_ring_timers_desc = "當一組瓦解輝環啟動時,顯示每個輝環開始擴散的計時器。此選項的進階設定直接繼承自瓦解輝環的進階設定。" + + L.absorb_text = "%s(%.0f%%)" end L = BigWigs:NewBossLocale("Prototype Pantheon", "zhTW") @@ -69,6 +71,8 @@ if L then L.bomb_dropped = "炸彈掉落" L.volatile_charges_new = "新炸彈!" + + L.absorb_text = "%s(%.0f%%)" end L = BigWigs:NewBossLocale("Anduin Wrynn", "zhTW") @@ -143,9 +147,9 @@ if L then L.mythic_blood_soak_stage_1 = "第一階段輸血計時器" L.mythic_blood_soak_stage_1_desc = "顯示輸血計時器,根據 Echo 的首殺所使用的時間軸製作,會在適合的時間點提醒你治療艾澤拉斯。" L.mythic_blood_soak_stage_2 = "第二階段輸血計時器" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "顯示輸血計時器,根據 Echo 的首殺所使用的時間軸製作,會在適合的時間點提醒你治療艾澤拉斯。" L.mythic_blood_soak_stage_3 = "第三階段輸血計時器" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "顯示輸血計時器,根據 Echo 的首殺所使用的時間軸製作,會在適合的時間點提醒你治療艾澤拉斯。" L.mythic_blood_soak_bar = "治療艾澤拉斯" L.floors_open = "地板開啟" diff --git a/SepulcherOfTheFirstOnes/LordsOfDread.lua b/SepulcherOfTheFirstOnes/LordsOfDread.lua index f15f351..2386671 100644 --- a/SepulcherOfTheFirstOnes/LordsOfDread.lua +++ b/SepulcherOfTheFirstOnes/LordsOfDread.lua @@ -73,13 +73,13 @@ function mod:GetOptions() },{ [360374] = "general", [360319] = -23927, -- Mal'Ganis - [360417] = -23929, -- Kin'tessa + [360717] = -23929, -- Kin'tessa },{ [360319] = L.unto_darkness, -- Unto Darkness - [366574] = L.cloud_of_carrion, -- Cloud of Carrion + [360012] = L.cloud_of_carrion, -- Cloud of Carrion [361913] = CL.adds, -- Manifest Shadows [359960] = L.leeching_claws, -- Leeching Claws - [360417] = L.infiltration_of_dread, -- Infiltration of Dread + [360717] = L.infiltration_of_dread, -- Infiltration of Dread [360146] = L.fearful_trepidation, -- Fearful Trepidation [360229] = L.slumber_cloud, -- Slumber Cloud [360284] = L.anguishing_strike, -- Anguishing Strike diff --git a/SepulcherOfTheFirstOnes/Rygelon.lua b/SepulcherOfTheFirstOnes/Rygelon.lua index 44d271f..07a6055 100644 --- a/SepulcherOfTheFirstOnes/Rygelon.lua +++ b/SepulcherOfTheFirstOnes/Rygelon.lua @@ -37,7 +37,7 @@ end -- Initialization -- -local darkEclipseMarker = mod:AddMarkerOption(false, "player", 1, 361548, 1, 2, 3, 4) -- Dark Eclipse +local darkEclipseMarker = mod:AddMarkerOption(false, "player", 1, 362806, 1, 2, 3, 4) -- Dark Eclipse function mod:GetOptions() return { {362806, "SAY_COUNTDOWN"}, -- Dark Eclipse @@ -58,7 +58,7 @@ function mod:GetOptions() 362798, -- Cosmic Radiation {368080, "SAY_COUNTDOWN"}, -- Dark Quasar },{ - [361548] = -24245, -- Rygelon + [362806] = -24245, -- Rygelon [362088] = "mythic", },{ [362275] = L.celestial_collapse, -- Celestial Collapse diff --git a/SepulcherOfTheFirstOnes/TheJailer.lua b/SepulcherOfTheFirstOnes/TheJailer.lua index db5293b..ce246a9 100644 --- a/SepulcherOfTheFirstOnes/TheJailer.lua +++ b/SepulcherOfTheFirstOnes/TheJailer.lua @@ -199,11 +199,11 @@ if L then L.azeroth_new_health_minus = "Azeroth Health: -%.1f%% (%d)" L.mythic_blood_soak_stage_1 = "Stage 1 Blood Soak timings" - L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill" + L.mythic_blood_soak_stage_1_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." L.mythic_blood_soak_stage_2 = "Stage 2 Blood Soak timings" - L.mythic_blood_soak_stage_2_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_2_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." L.mythic_blood_soak_stage_3 = "Stage 3 Blood Soak timings" - L.mythic_blood_soak_stage_3_desc = L.mythic_blood_soak_stage_1_desc + L.mythic_blood_soak_stage_3_desc = "Show a bar for timings when healing azeroth is at a good time, used by Echo on their first kill." L.mythic_blood_soak_bar = "Heal Azeroth" L.mythic_blood_soak_icon = "spell_azerite_essence10" @@ -264,7 +264,6 @@ function mod:GetOptions() 366678, -- World Cracker 367051, -- World Shatterer "mythic_dispel_stage_4", - 368383, -- Diverted Life Shield 360378, -- Meteor Cleave {368591, "SAY", "SAY_COUNTDOWN"}, -- Death Sentence },{