Module:Char col

From Xeno Series Wiki
Jump to navigation Jump to search

The colour table is at Module:Char col/data, go there to edit it.


local col_table = mw.loadData("Module:Char col/data")

local char_col = {}

function char_col.col( frame )
	c = col_table[frame.args[1]]
	if c then
		return c
	else
		return "127,127,127"
	end
end

return char_col