Module:GetRandomCreature: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 3: Line 3:
function p.parse(frame)
function p.parse(frame)
luatable = luatable or {
luatable = luatable or {
  [r] = "#a64a2e",
  ['r'] = "#a64a2e",
  [R] = "#d74200",
  ['R'] = "#d74200",
  [g] = "#009403",
  ['g'] = "#009403",
  [G] = "#00c420",
  ['G'] = "#00c420",
  [b] = "#0048bd",
  ['b'] = "#0048bd",
  [B] = "#0096ff",
  ['B'] = "#0096ff",
  [c] = "#40a4b9",
  ['c'] = "#40a4b9",
  [C] = "#77bfcf",
  ['C'] = "#77bfcf",
  [m] = "#b154cf",
  ['m'] = "#b154cf",
  [M] = "#da5bd6",
  ['M'] = "#da5bd6",
  [w] = "#98875f",
  ['w'] = "#98875f",
  [W] = "#cfc041",
  ['W'] = "#cfc041",
  [k] = "#0f3b3a",
  ['k'] = "#0f3b3a",
  [K] = "#155352",
  ['K'] = "#155352",
  [y] = "#b1c9c3",
  ['y'] = "#b1c9c3",
  [Y] = "#FFFFFF",
  ['Y'] = "#FFFFFF",
  [o] = "#f15f22",
  ['o'] = "#f15f22",
  [O] = "#e99f10",
  ['O'] = "#e99f10",
default = "error"}
default = "error"}
local a = string.gsub(frame.args[1],"(&amp;)(%w)([^&\n]+)", "<test span style=\"color: " .. tostring(p.test("%2")) .. ";\">"  .. "%3" .. "<test span>")
local a = string.gsub(frame.args[1],"(&amp;)(%w)([^&\n]+)", "<test span style=\"color: " .. tostring(p.test("%2")) .. ";\">"  .. "%3" .. "<test span>")
Line 31: Line 31:
function p.test(z)
function p.test(z)
luatable = luatable or {
luatable = luatable or {
  [r] = "#a64a2e",
  ['r'] = "#a64a2e",
  [R] = "#d74200",
  ['R'] = "#d74200",
  [g] = "#009403",
  ['g'] = "#009403",
  [G] = "#00c420",
  ['G'] = "#00c420",
  [b] = "#0048bd",
  ['b'] = "#0048bd",
  [B] = "#0096ff",
  ['B'] = "#0096ff",
  [c] = "#40a4b9",
  ['c'] = "#40a4b9",
  [C] = "#77bfcf",
  ['C'] = "#77bfcf",
  [m] = "#b154cf",
  ['m'] = "#b154cf",
  [M] = "#da5bd6",
  ['M'] = "#da5bd6",
  [w] = "#98875f",
  ['w'] = "#98875f",
  [W] = "#cfc041",
  ['W'] = "#cfc041",
  [k] = "#0f3b3a",
  ['k'] = "#0f3b3a",
  [K] = "#155352",
  ['K'] = "#155352",
  [y] = "#b1c9c3",
  ['y'] = "#b1c9c3",
  [Y] = "#FFFFFF",
  ['Y'] = "#FFFFFF",
  [o] = "#f15f22",
  ['o'] = "#f15f22",
  [O] = "#e99f10",
  ['O'] = "#e99f10",
default = "error"}
default = "error"}



Revision as of 23:38, 15 June 2019

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

local p = {}
local luatable
function p.parse(frame)
luatable = luatable or {
 ['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",
default = "error"}
local a = string.gsub(frame.args[1],"(&amp;)(%w)([^&\n]+)", "<test span style=\"color: " .. tostring(p.test("%2")) .. ";\">"  .. "%3" .. "<test span>")

local n = string.gsub(frame.args[1], "(&amp;)(%w?)([^&\n]+)", "%2")

return a
end

function p.test(z)
luatable = luatable or {
 ['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",
default = "error"}


local b = table[z]
return b
end

return p