Module:GetRandomCreature: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 27: Line 27:
         return "<span style=\"color: " .. luatable[color] .. ";\">"  .. text .. "</span>"
         return "<span style=\"color: " .. luatable[color] .. ";\">"  .. text .. "</span>"
     end)
     end)
return a
return "<poem>" .. a .. "</poem>"
end
end


return p
return p

Revision as of 16:16, 16 June 2019

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

local p = {}

function p.parse(frame)
local b = string.gsub(frame.args[1],"([{}])", "")
local a = string.gsub(b,"(&amp;)(%w)([^&\n]*)", function(_,color,text)
        local luatable = {
            ['r'] = "#a64a2e",
            ['R'] = "#d74200",
            ['g'] = "#009403",
            ['G'] = "#00c420",
            ['b'] = "#0048bd",
            ['B'] = "#0096ff",
            ['c'] = "#40a4b9",
            ['C'] = "#77bfcf",
            ['m'] = "#b154cf",
            ['M'] = "#da5bd6",
            ['w'] = "#98875f",
            ['W'] = "#cfc041",
            ['k'] = "#0f3b3a",
            ['K'] = "#155352",
            ['y'] = "#b1c9c3",
            ['Y'] = "#FFFFFF",
            ['o'] = "#f15f22",
            ['O'] = "#e99f10"
        }

        return "<span style=\"color: " .. luatable[color] .. ";\">"  .. text .. "</span>"
    end)
return "<poem>" .. a .. "</poem>"
end

return p