Merging Seal of Command on Wrath classic

This commit is contained in:
Tercio Jose
2022-10-10 16:51:56 -03:00
parent 1ed29008aa
commit 69899679e7
63 changed files with 1655 additions and 1638 deletions
+12 -12
View File
@@ -189,12 +189,12 @@ _detalhes.EncounterDetailsTempWindow = function(EncounterDetails)
row.textura:SetStatusBarColor (.5, .5, .5, 0)
row.textura:SetMinMaxValues(0,100)
row.lineText1 = row.textura:CreateFontString (nil, "OVERLAY", "GameFontHighlightSmall")
row.lineText1 = row.textura:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall")
row.lineText1:SetPoint("LEFT", row.textura, "LEFT", 22, -1)
row.lineText1:SetJustifyH("LEFT")
row.lineText1:SetTextColor (1,1,1,1)
row.lineText4 = row.textura:CreateFontString (nil, "OVERLAY", "GameFontHighlightSmall")
row.lineText4 = row.textura:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall")
row.lineText4:SetPoint("RIGHT", row.textura, "RIGHT", -2, 0)
row.lineText4:SetJustifyH("RIGHT")
row.lineText4:SetTextColor (1,1,1,1)
@@ -994,7 +994,7 @@ _detalhes.EncounterDetailsTempWindow = function(EncounterDetails)
texture:SetHeight(9)
texture:SetPoint("TOPLEFT", EncounterDetails.Frame, "TOPLEFT", (i*65) + 499, -81)
texture:SetColorTexture (unpack(grafico_cores[i]))
local text = g:CreateFontString (nil, "OVERLAY", "GameFontHighlightSmall")
local text = g:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall")
text:SetPoint("LEFT", texture, "right", 2, 0)
text:SetJustifyH("LEFT")
if (i == 1) then
@@ -1579,13 +1579,13 @@ _detalhes.EncounterDetailsTempWindow = function(EncounterDetails)
line.icon:SetPoint("left", line, "left", 2, 0)
line.icon:SetSize(14, 14)
line.lefttext = line:CreateFontString (nil, "overlay", "GameFontHighlightSmall")
line.lefttext = line:CreateFontString(nil, "overlay", "GameFontHighlightSmall")
line.lefttext:SetPoint("left", line.icon, "right", 2, 0)
line.lefttext:SetWidth(line:GetWidth() - 26)
line.lefttext:SetHeight(14)
line.lefttext:SetJustifyH("left")
line.righttext = line:CreateFontString (nil, "overlay", "GameFontHighlightSmall")
line.righttext = line:CreateFontString(nil, "overlay", "GameFontHighlightSmall")
line.righttext:SetPoint("left", line.icon, "right", 46, 0)
line.righttext:SetWidth(line:GetWidth() - 60)
line.righttext:SetHeight(14)
@@ -1916,7 +1916,7 @@ _detalhes.EncounterDetailsTempWindow = function(EncounterDetails)
spellinfo:SetScript("OnEnter", info_onenter)
spellinfo:SetScript("OnLeave", info_onleave)
local spellinfotext = spellinfo:CreateFontString (nil, "overlay", "GameFontNormal")
local spellinfotext = spellinfo:CreateFontString(nil, "overlay", "GameFontNormal")
spellinfotext:SetPoint("center", spellinfo, "center")
spellinfotext:SetText("info")
spellinfo:SetPoint("left", spellname.widget, "right", 4, 0)
@@ -2380,13 +2380,13 @@ local ScrollCreateLine = function(self, index)
local icon = statusBar:CreateTexture("$parentIcon", "overlay")
icon:SetSize(ScrollLineHeight, ScrollLineHeight)
local name = statusBar:CreateFontString ("$parentName", "overlay", "GameFontNormal")
local name = statusBar:CreateFontString("$parentName", "overlay", "GameFontNormal")
_detalhes.gump:SetFontSize (name, 10)
icon:SetPoint("left", line, "left", 2, 0)
name:SetPoint("left", icon, "right", 2, 0)
_detalhes.gump:SetFontColor(name, "white")
local done = statusBar:CreateFontString ("$parentDone", "overlay", "GameFontNormal")
local done = statusBar:CreateFontString("$parentDone", "overlay", "GameFontNormal")
_detalhes.gump:SetFontSize (done, 10)
_detalhes.gump:SetFontColor(done, "white")
done:SetPoint("right", line, "right", -2, 0)
@@ -2456,9 +2456,9 @@ for i = 1, 10 do
local icon = line:CreateTexture("$parentIcon", "overlay")
icon:SetSize(16, 16)
icon:SetTexture([[Interface\AddOns\Details\images\clock]])
local name = line:CreateFontString ("$parentName", "overlay", "GameFontNormal")
local name = line:CreateFontString("$parentName", "overlay", "GameFontNormal")
_detalhes.gump:SetFontSize (name, 10)
local done = line:CreateFontString ("$parentDone", "overlay", "GameFontNormal")
local done = line:CreateFontString("$parentDone", "overlay", "GameFontNormal")
_detalhes.gump:SetFontSize (done, 10)
icon:SetPoint("left", line, "left", 2, 0)
@@ -2484,11 +2484,11 @@ for i = 1, 20 do
line:SetBackdrop({bgFile = [[Interface\Tooltips\UI-Tooltip-Background]], tileSize = 64, tile = true})
line:SetBackdropColor(unpack(BGColorDefault))
line:Hide()
local name = line:CreateFontString ("$parentName", "overlay", "GameFontNormal")
local name = line:CreateFontString("$parentName", "overlay", "GameFontNormal")
_detalhes.gump:SetFontSize (name, 9)
name:SetPoint("left", line, "left", 2, 0)
local done = line:CreateFontString ("$parentDone", "overlay", "GameFontNormal")
local done = line:CreateFontString("$parentDone", "overlay", "GameFontNormal")
_detalhes.gump:SetFontSize (done, 9)
done:SetPoint("right", line, "right", -2, 0)