Mudanças entre as edições de "Módulo:Gb"

De Wiki Gla
Ir para navegação Ir para pesquisar
 
(32 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
-- Módulo:BossDisplay
-- Módulo:BossDisplay (responsivo)
 
local p = {}
local p = {}


Linha 15: Linha 16:
     local exp        = g("exp",        "???")
     local exp        = g("exp",        "???")
     local nivel      = g("nivel",      "???")
     local nivel      = g("nivel",      "???")
     local necessario     = g("necessario",    "-")
     local necessario = g("necessario",    "-")
     local forte     = g("forte",      "-")
     local comum     = g("comum",      "")
     local reflete    = g("reflete",  "-")
     local semiraro  = g("semiraro",  "")
     local normal      = g("normal",     "")
     local raro      = g("raro",       "")
     local elite  = g("elite",  "")
     local muitoRaro  = g("muitoraro",  "")
     local hard      = g("hard",      "")
 
     local extra  = g("extra", "")
     ----------------------------------------------------
    -- CSS responsivo embutido
    ----------------------------------------------------
     local css = [[
 
]]


    local html = mw.html.create("div")
        :addClass("boss-container")
        :css{
            background = "#18181b",
            ["border-radius"] = "12px",
            padding = "30px",
            color = "#fff",
            width = "700px",
            margin = "auto",
            ["font-family"] = "Verdana,sans-serif"
        }


     -- Título
     local html = mw.html.create()
     html:tag("div")
 
         :css("font-size", "1.5em")
    html:wikitext(css)
        :css("font-weight", "bold")
 
        :css("margin-bottom", "10px")
    local box = html:tag("div")
    :addClass("boss-container")
    :css{
        background = "#18181b",
        ["border-radius"] = "12px",
        padding = "30px",
        color = "#fff",
        width = "100%",
        margin = "auto",
        ["font-family"] = "Verdana,sans-serif",
        ["box-sizing"] = "border-box"
    }
 
     ----------------------------------------------------
    -- Cabeçalho
    ----------------------------------------------------
    box:tag("div")
         :css{ ["font-size"] = "1.5em", ["font-weight"] = "bold", ["margin-bottom"] = "10px" }
         :wikitext("Bosses")
         :wikitext("Bosses")


    -- Variantes
     local var = box:tag("div")
     local var = html:tag("div")
         :css("margin-bottom", "24px")
         :css("margin-bottom", "24px")


Linha 55: Linha 66:
             ["font-weight"] = "600"
             ["font-weight"] = "600"
         }
         }
         :wikitext("Unbound Crimsonveil")
         :wikitext("Mecanica Elite")


     var:tag("span")
     var:tag("span")
Linha 68: Linha 79:
             ["border-left"] = "0"
             ["border-left"] = "0"
         }
         }
         :wikitext("Archon Crimsonveil")
         :wikitext("Mecanica Hard")


     -- Container principal
     ----------------------------------------------------
     local main = html:tag("div")
    -- Corpo principal (responsivo)
    ----------------------------------------------------
     local main = box:tag("div")
        :addClass("boss-main")
         :css{
         :css{
             display = "flex",
             display = "flex",
             ["align-items"] = "center"
            gap = "20px",
             ["align-items"] = "center",
            ["justify-content"] = "space-between",
            ["flex-wrap"] = "wrap"
         }
         }


    -- Imagem
     main:tag("div")
     main:tag("div")
         :css{ width = "110px", flex = "none" }
        :addClass("boss-img-box")
         :wikitext(string.format("[[Arquivo:%s|90x90px]]", img))
         :css{ ["flex"] = "none" }
         :wikitext(string.format("[[Arquivo:%s|90px]]", img))


    -- Nome + frase
     local textBox = main:tag("div")
     local textBox = main:tag("div")
        :css{ ["flex"] = "1", ["min-width"] = "200px" }


     textBox:tag("div")
     textBox:tag("div")
Linha 93: Linha 110:
         :wikitext(string.format('"%s"', frase))
         :wikitext(string.format('"%s"', frase))


    ----------------------------------------------------
     -- Stats
     -- Stats
    ----------------------------------------------------
     local stats = main:tag("div")
     local stats = main:tag("div")
        :addClass("boss-stats")
         :css{
         :css{
            ["margin-left"] = "auto",
             display = "flex",
             display = "flex",
             ["flex-direction"] = "column",
             ["flex-direction"] = "column",
             ["align-items"] = "flex-end",
             ["align-items"] = "flex-end",
             gap = "6px"
             gap = "6px",
            ["min-width"] = "160px"
         }
         }


Linha 115: Linha 135:
             display = "flex",
             display = "flex",
             ["align-items"] = "center",
             ["align-items"] = "center",
             gap = "18px"
            ["justify-content"] = "center",
             gap = "16px",
            ["flex-wrap"] = "wrap"
         }
         }


     sline:tag("span")
     sline:wikitext(string.format('<span style="color:#fb3d3d;font-weight:bold;font-size:1.15em;">&#x2764;&#xFE0F; %s</span>', hp))
        :attr("title", "HP")
    sline:wikitext(string.format('<span style="color:#ffe568;font-weight:bold;font-size:1.08em;">&#x1F4B0; %s</span>', exp))
        :css{ color = "#fb3d3d", ["font-weight"] = "bold" }
    sline:wikitext(string.format('<span style="color:#6ca8fb;font-weight:bold;font-size:1.04em;">&#x2694;&#xFE0F; %s</span>', nivel))
        :wikitext(string.format('<span style="font-size:1.15em;">&#x2764;&#xFE0F; %s</span>', hp))


     sline:tag("span")
     stats:tag("div")
        :attr("title", "EXP")
        :css{ color = "#ffe568", ["font-weight"] = "bold" }
        :wikitext(string.format('<span style="font-size:1.08em;">&#x1F4B0; %s</span>', exp))
 
    sline:tag("span")
        :attr("title", "Nível")
        :css{ color = "#6ca8fb", ["font-weight"] = "bold" }
        :wikitext(string.format('<span style="font-size:1.04em;">&#x2694;&#xFE0F; %s</span>', nivel))
 
    -- Frescor / forte / reflete
    local infoLine = stats:tag("div")
         :css{
         :css{
             ["margin-top"] = "5px",
             ["margin-top"] = "5px",
             ["font-size"] = "90%",
             ["font-size"] = "90%",
             color = "#cfccff"
             color = "#cfccff",
            ["text-align"] = "right"
         }
         }
        :wikitext(string.format(
            "<b>Necessario:</b> %s &nbsp;&nbsp; ",
            necessario, forte, reflete
        ))


     infoLine:wikitext(string.format("<b>Necessario:</b> %s ", fresco))
     ----------------------------------------------------
     infoLine:wikitext(string.format('<span style="margin-left:12px;"><b>Forte:</b> %s</span>', forte))
 
    infoLine:wikitext(string.format('<span style="margin-left:12px;"><b>Reflete:</b> %s</span>', reflete))
    -- Espaço livre para conteúdo customizável do editor
 
    ----------------------------------------------------
 
     local conteudo = box:tag("div")
 
        :addClass("boss-custom-content")


    -- Loot table
    local loot = html:tag("div")
         :css{
         :css{
             ["margin-top"] = "28px",
             ["margin-top"] = "28px",
             background = "#232329",
             background = "#232329",
             ["border-radius"] = "10px",
             ["border-radius"] = "10px",
             padding = "18px"
 
             padding = "18px",
 
            ["min-height"] = "40px"
 
         }
         }


    local tableEl = loot:tag("table")
        :wikitext(g("conteudo", ""))  -- permite o uso de |conteudo= na predefinição
        :css{
 
            width = "100%",
            color = "#fff",
            ["table-layout"] = "auto"
        }


    local function row(label, color, content)
        local tr = tableEl:tag("tr")
        tr:tag("th")
            :css{
                ["text-align"] = "left",
                color = color,
                padding = "6px",
                ["font-size"] = "1.07em"
            }
            :wikitext(label)
        tr:tag("td"):wikitext(content)
    end


    row("Normal:",      "#f3e8bb", normal)
    row("Elite:",  "#aeccff", elite)
    row("Hard:",      "#e6e5ff", hard)
    row("Extra:", "#f9538f", extra)


     return tostring(html)
     return tostring(html)end
end


return p
return p

Edição atual tal como às 18h27min de 5 de dezembro de 2025

A documentação para este módulo pode ser criada em Módulo:Gb/doc

-- Módulo:BossDisplay (responsivo)

local p = {}

function p.bossInfo(frame)
    local args = frame:getParent().args

    local function g(k, default)
        return mw.text.trim(args[k] or "") ~= "" and args[k] or default
    end

    local img        = g("img",        "Placeholder.png")
    local nome       = g("nome",       "Nome do Boss")
    local frase      = g("frase",      "Frase ou lema do boss.")
    local hp         = g("hp",         "???")
    local exp        = g("exp",        "???")
    local nivel      = g("nivel",      "???")
    local necessario = g("necessario",     "-")
    local comum      = g("comum",      "")
    local semiraro   = g("semiraro",   "")
    local raro       = g("raro",       "")
    local muitoRaro  = g("muitoraro",  "")

    ----------------------------------------------------
    -- CSS responsivo embutido
    ----------------------------------------------------
    local css = [[

]]


    local html = mw.html.create()

    html:wikitext(css)

    local box = html:tag("div")
    :addClass("boss-container")
    :css{
        background = "#18181b",
        ["border-radius"] = "12px",
        padding = "30px",
        color = "#fff",
        width = "100%",
        margin = "auto",
        ["font-family"] = "Verdana,sans-serif",
        ["box-sizing"] = "border-box"
    }

    ----------------------------------------------------
    -- Cabeçalho
    ----------------------------------------------------
    box:tag("div")
        :css{ ["font-size"] = "1.5em", ["font-weight"] = "bold", ["margin-bottom"] = "10px" }
        :wikitext("Bosses")

    local var = box:tag("div")
        :css("margin-bottom", "24px")

    var:tag("span")
        :css{
            ["background-color"] = "#232329",
            ["border-radius"] = "7px 0 0 7px",
            padding = "7px 20px",
            ["font-size"] = "1em",
            color = "#cbcdd7",
            ["font-weight"] = "600"
        }
        :wikitext("Mecanica Elite")

    var:tag("span")
        :css{
            ["background-color"] = "#19171c",
            ["border-radius"] = "0 7px 7px 0",
            padding = "7px 20px",
            ["font-size"] = "1em",
            color = "#fff",
            ["font-weight"] = "600",
            border = "2px solid #c7a047",
            ["border-left"] = "0"
        }
        :wikitext("Mecanica Hard")

    ----------------------------------------------------
    -- Corpo principal (responsivo)
    ----------------------------------------------------
    local main = box:tag("div")
        :addClass("boss-main")
        :css{
            display = "flex",
            gap = "20px",
            ["align-items"] = "center",
            ["justify-content"] = "space-between",
            ["flex-wrap"] = "wrap"
        }

    main:tag("div")
        :addClass("boss-img-box")
        :css{ ["flex"] = "none" }
        :wikitext(string.format("[[Arquivo:%s|90px]]", img))

    local textBox = main:tag("div")
        :css{ ["flex"] = "1", ["min-width"] = "200px" }

    textBox:tag("div")
        :css{ ["font-size"] = "1.2em", ["font-weight"] = "bold", color = "#e82b2b" }
        :wikitext(nome)

    textBox:tag("div")
        :css{ ["font-size"] = "95%", color = "#eaa85d", ["font-style"] = "italic" }
        :wikitext(string.format('"%s"', frase))

    ----------------------------------------------------
    -- Stats
    ----------------------------------------------------
    local stats = main:tag("div")
        :addClass("boss-stats")
        :css{
            display = "flex",
            ["flex-direction"] = "column",
            ["align-items"] = "flex-end",
            gap = "6px",
            ["min-width"] = "160px"
        }

    local statBox = stats:tag("div")
        :css{
            ["background-color"] = "#222126",
            ["border-radius"] = "8px",
            padding = "12px 20px",
            ["min-width"] = "170px"
        }

    local sline = statBox:tag("div")
        :css{
            display = "flex",
            ["align-items"] = "center",
            ["justify-content"] = "center",
            gap = "16px",
            ["flex-wrap"] = "wrap"
        }

    sline:wikitext(string.format('<span style="color:#fb3d3d;font-weight:bold;font-size:1.15em;">&#x2764;&#xFE0F; %s</span>', hp))
    sline:wikitext(string.format('<span style="color:#ffe568;font-weight:bold;font-size:1.08em;">&#x1F4B0; %s</span>', exp))
    sline:wikitext(string.format('<span style="color:#6ca8fb;font-weight:bold;font-size:1.04em;">&#x2694;&#xFE0F; %s</span>', nivel))

    stats:tag("div")
        :css{
            ["margin-top"] = "5px",
            ["font-size"] = "90%",
            color = "#cfccff",
            ["text-align"] = "right"
        }
        :wikitext(string.format(
            "<b>Necessario:</b> %s &nbsp;&nbsp; ",
            necessario, forte, reflete
        ))

    ----------------------------------------------------

    -- Espaço livre para conteúdo customizável do editor

    ----------------------------------------------------

    local conteudo = box:tag("div")

        :addClass("boss-custom-content")

        :css{

            ["margin-top"] = "28px",

            background = "#232329",

            ["border-radius"] = "10px",

            padding = "18px",

            ["min-height"] = "40px"

        }

        :wikitext(g("conteudo", ""))  -- permite o uso de |conteudo= na predefinição




    return tostring(html)end

return p