Module:Attribute ID

From ARMS Institute, the ARMS Wiki
Revision as of 17:13, 16 April 2018 by Augrunga (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Attribute ID/doc

local cap = require( 'Module:Capitalize' ).main
local getArgs = require( 'Module:Arguments' ).main
local p = {}
local attributedict = {
    ["FIRE"] = "Fire",
    ["ELECTRIC"] = "Electric",
    ["WIND"] = "Wind",
    ["STUN"] = "Stun",
    ["EXPLOSION"] = "Explosion",
    ["ICE"] = "Ice",
    ["BLIND"] = "Blind",
    ["NULL"] = "None",
    ["NONE"] = "None",
}

function p.main()
    local args = getArgs()
        return p._main(args)
end

function p._main(args)
if args[1] then
    local attribute = string.upper(args[1])
local pageName
    for key, value in pairs(attributedict) do
        if string.match(arg1, key) then
output = attribute:gsub(key,value)
if output == "None" then
pageName = "Null"
else
pageName = output
end
            local formattedImage

            if args[3] == "text" then
                formattedImage = string.format('[[File:Attrib-%s.png|%s|link=%s|%s]]', output, args[2] or '20px', pageName, args['text'] or pageName)
                local formattedLink = string.format('[[%s|%s]]', args['link'] or pageName, args['text'] or pageName)
                return string.format('<span style="white-space: nowrap;">%s %s</span>', formattedImage, formattedLink)
            else
                formattedImage = string.format('[[File:Attrib-%s.png|%s|link=%s|%s]]', output, args[2] or '36px', pageName, args['text'] or pageName)
                return formattedImage
            end
        end
    end
end
end

return p