Content deleted Content added
Paisley Park (talk | contribs) No edit summary Tag: Reverted |
mNo edit summary |
||
(5 intermediate revisions by one other user not shown) | |||
Line 14:
ptnultimate = '<span style="background-color:#a12932; color:white; font-size:12px; padding:3px 5px; font-family:Roboto Slab;">Ultimate</span>',
ptnpassive = '<span style="background-color:#4e699e; color:white; font-size:12px; padding:3px 5px; font-family:Roboto Slab;">Passive</span>',
ptnenergy = '<span style="background-color:#552a58; color:white; font-size:12px; border-radius:5px; padding:3px 5px; font-family:Roboto Slab;">' .. '%sCost %s</span>',
ptncore
'<img src="%s" alt="Core Icon" style="height:12px; vertical-align:middle; margin-right:3px;">Core Dmg %s</span>',▼
}
-- Function to
local function
size = size or "20"
return mw.text.tag("span", {
▲
}, '[[File:' .. fileName .. '|' .. size .. 'px|link=|alt=]]')
end
Line 35 ⟶ 31:
local output = {}
--
local energyIcon =
local coreIcon =
-- Loop through user inputs
Line 47 ⟶ 43:
local number = args[i + 1] or ""
table.insert(output, inputStyles[value]:format(coreIcon, number))
elseif inputStyles[value] then
-- Handle inputs without numbers
table.insert(output, inputStyles[value])
end
end
|