diff --git a/ElvUI_SLE/defaults/profile.lua b/ElvUI_SLE/defaults/profile.lua index da02f68..4d3ee81 100644 --- a/ElvUI_SLE/defaults/profile.lua +++ b/ElvUI_SLE/defaults/profile.lua @@ -704,6 +704,7 @@ P["sle"] = { ["nightmare"] = true, ["trial"] = true, ["nighthold"] = true, + ["sargeras"] = true, }, }, }, diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua index f426da6..f83ce9d 100644 --- a/ElvUI_SLE/locales/english.lua +++ b/ElvUI_SLE/locales/english.lua @@ -786,6 +786,7 @@ L["Tooltip X-offset"] = true L["Offset the tooltip on the X-axis."] = true L["Tooltip Y-offset"] = true L["Offset the tooltip on the Y-axis."] = true +L["RAID_TOS"] = "ToS" L["RAID_NH"] = "NH" L["RAID_TOV"] = "ToV" L["RAID_EN"] = "EN" diff --git a/ElvUI_SLE/locales/german.lua b/ElvUI_SLE/locales/german.lua index 7c6f283..f2c6d57 100644 --- a/ElvUI_SLE/locales/german.lua +++ b/ElvUI_SLE/locales/german.lua @@ -780,6 +780,7 @@ L["Tooltip X-offset"] = true L["Offset the tooltip on the X-axis."] = true L["Tooltip Y-offset"] = true L["Offset the tooltip on the Y-axis."] = true +L["RAID_TOS"] = "ToS" L["RAID_NH"] = "NH" L["RAID_TOV"] = "ToV" L["RAID_EN"] = "EN" diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua index 369142c..3090c2b 100644 --- a/ElvUI_SLE/locales/russian.lua +++ b/ElvUI_SLE/locales/russian.lua @@ -781,6 +781,7 @@ L["Tooltip X-offset"] = "Смещение подсказки по X" L["Offset the tooltip on the X-axis."] = "Смещает подсказку по оси X относительно выбранной точки крепления." L["Tooltip Y-offset"] = "Смещение подсказки по Y" L["Offset the tooltip on the Y-axis."] = "Смещает подсказку по оси Y относительно выбранной точки крепления." +L["RAID_TOS"] = "ToS" L["RAID_NH"] = "ЦН" L["RAID_TOV"] = "ИД" L["RAID_EN"] = "ИК" diff --git a/ElvUI_SLE/modules/tooltips/raidprogress.lua b/ElvUI_SLE/modules/tooltips/raidprogress.lua index 01b5e6f..a9b149b 100644 --- a/ElvUI_SLE/modules/tooltips/raidprogress.lua +++ b/ElvUI_SLE/modules/tooltips/raidprogress.lua @@ -33,7 +33,7 @@ RP.bosses = { { --Mythic 11410, 11414, 11418, }, - { -- Herioc + { -- Heroic 11409, 11413, 11417, }, { -- Normal @@ -48,7 +48,7 @@ RP.bosses = { { --Mythic 10943, 10947, 10951, 10955, 10960, 10964, 10968, 10972, 10976, 10980 }, - { -- Herioc + { -- Heroic 10942, 10946, 10950, 10954, 10959, 10963, 10967, 10971, 10975, 10979 }, { -- Normal @@ -59,17 +59,34 @@ RP.bosses = { }, "nighthold", }, + { -- Tomb of Sargeras + { -- Mythic + 11880, 11884, 11888, 11892, 11896, 11900, 11904, 11908, 11912 + }, + { -- Heroic + 11879, 11883, 11887, 11891, 11895, 11899, 11903, 11907, 11911 + }, + { -- Normal + 11878, 11882, 11886, 11890, 11894, 11898, 11902, 11906, 11910 + }, + { -- LFR + 11877, 11881, 11885, 11889, 11893, 11897, 11901, 11905, 11909 + }, + "sargeras", + }, } RP.Raids = { ["LONG"] = { T.GetMapNameByID(1094), T.GetMapNameByID(1114), T.GetMapNameByID(1088), + T.GetMapNameByID(1147), }, ["SHORT"] = { L["RAID_EN"], L["RAID_TOV"], L["RAID_NH"], + L["RAID_TOS"], }, } RP.modes = { diff --git a/ElvUI_SLE/options/tooltip_c.lua b/ElvUI_SLE/options/tooltip_c.lua index a449dc3..47b8b61 100644 --- a/ElvUI_SLE/options/tooltip_c.lua +++ b/ElvUI_SLE/options/tooltip_c.lua @@ -115,6 +115,7 @@ local function configTable() nightmare = { order = 1, type = "toggle", name = T.GetMapNameByID(1094) }, trial = { order = 2, type = "toggle", name = T.GetMapNameByID(1114) }, nighthold = { order = 3, type = "toggle", name = T.GetMapNameByID(1088) }, + sargeras = { order = 4, type = "toggle", name = T.GetMapNameByID(1147) }, }, }, },