Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Join the Playtest on Steam Now: SpiritVale

Module:GameSkills: Difference between revisions

From SpiritVale Wiki
No edit summary
No edit summary
Line 1,127: Line 1,127:


local root = mw.html.create("div")
local root = mw.html.create("div")
root:addClass("spiritvale-skill-list")
    root:addClass("sv-skill-collection")      -- NEW: unified wrapper panel
    root:addClass("spiritvale-skill-list")   -- keep if other CSS references it


for _, rec in ipairs(matches) do
    for _, rec in ipairs(matches) do
root:wikitext(buildInfobox(rec, { showUsers = false }))
root:wikitext(buildInfobox(rec, { showUsers = false, inList = true }))
end
    end
 
    return tostring(root)


return tostring(root)
end
end