Anonymous

Module:Attribute ID: Difference between revisions

From ARMS Institute, the ARMS Wiki
m
Blanked the page
(Undo revision 16046 by Hello (talk))
Tag: Undo
m (Blanked the page)
Tags: Blanking Reverted
Line 1: Line 1:
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",
    ["POISON"] = "Poison",
    ["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(attribute, key) then
                output = attribute:gsub(key,value)
                if output == "None" then
                    pageName = "Null"
                else
                    pageName = output
                end
                local formattedImage
                local formattedLink
                if args[2] == "text" then
                    formattedImage = string.format('[[File:Attrib-%s.png|%s|link=%s]]', output, '20px', pageName)
                    formattedLink = string.format('[[%s|%s]]', args['link'] or pageName)
                    return string.format('<span style="white-space: nowrap;">%s %s</span>', formattedImage, formattedLink)
                else
                    if args[3] == "text" then
                        formattedImage = string.format('[[File:Attrib-%s.png|%s|link=%s]]', output, args[2] or '20px', pageName)
                        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]]', output, args[2] or 'x36px', pageName)
                        return formattedImage
                    end
                end
            end
        end
    end
end
return p
125

edits