Module:GetRandomCreature: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 5: Line 5:
local subtype = string.sub(frame.args[1],0,1)
local subtype = string.sub(frame.args[1],0,1)
local stats = string.sub(frame.args[1],2,8)
local stats = string.sub(frame.args[1],2,8)
local table = {['A'] = "Truekin", ['B'] = "Mutant"}
local statsstring =""
return table[subtype] .. ' stats: ' .. stats
local subtypetable = {['A'] = "Truekin", ['B'] = "Mutant"}
local statstable = {
['A'] = 6,
['B'] = 7,
['C'] = 8,
['D'] = 9,
['E'] = 10,
['F'] = 11,
['G'] = 12,
['H'] = 13,
['I'] = 14,
['J'] = 15,
['K'] = 16,
['L'] = 17,
['M'] = 18,
['N'] = 19,
['O'] = 20,
['P'] = 21,
['Q'] = 22,
['R'] = 23,
['S'] = 24,
['T'] = 25,
['U'] = 26,
['V'] = 27}
 
for i=0,6,1
do
statsstring = statsstring .. " " .. statstable[string.sub(stats,2+i,3+i)]
end
 
return subtypetable[subtype] .. ' stats: ' .. statsstring
end
end



Revision as of 15:40, 14 July 2019

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

local p = {}
local cargo = mw.ext.cargo

function p.parse(frame)
local subtype = string.sub(frame.args[1],0,1)
local stats = string.sub(frame.args[1],2,8)
local statsstring =""
local subtypetable = {['A'] = "Truekin", ['B'] = "Mutant"}
local statstable = {
['A'] = 6,
['B'] = 7,
['C'] = 8,
['D'] = 9,
['E'] = 10,
['F'] = 11,
['G'] = 12,
['H'] = 13,
['I'] = 14,
['J'] = 15,
['K'] = 16,
['L'] = 17,
['M'] = 18,
['N'] = 19,
['O'] = 20,
['P'] = 21,
['Q'] = 22,
['R'] = 23,
['S'] = 24,
['T'] = 25,
['U'] = 26,
['V'] = 27}

for i=0,6,1
do
statsstring = statsstring .. " " .. statstable[string.sub(stats,2+i,3+i)]
end

return subtypetable[subtype] .. ' stats: ' .. statsstring
end

function p.nonxmlparse(frame)
local a = string.gsub(frame.args[1],"(&)(%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 a
end

return p