Module:EffectType

From Caves of Qud Wiki
Revision as of 01:35, 12 March 2021 by Teamtoto (talk | contribs) (Created page with "local p = {} effectTypes = {"General", "Mental", "Metabolic", "Respiratory", "Circulatory", "Contact", "Field", "Activity", "Dimensional", "Chemical", "Structural", "Sonic",...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

local p = {}

effectTypes = {"General", "Mental", "Metabolic", "Respiratory", "Circulatory", "Contact", "Field", "Activity", "Dimensional", "Chemical", "Structural", "Sonic", "Temporal", "Neurological", "Disease"
}

classTypes = {"Minor", "Negative", "Removable", "Voluntary"}

function p.getTypes(frame)
	frame = mw.getCurrentFrame()
	typeList = p.parse(frame.args[1])
	return table.concat(typeList, ', ')
end

function p.parse(bits)
	typeList = {}
	rbits = string.reverse(bits)
	i = 1
	for bit in string.gmatch(rbits, "[01]") do
		if bit == "1" then
			if i < 25 then
				table.insert(typeList, effectTypes[i])
			elseif i < 29 then
				table.insert(typeList, classTypes[i-24])
			else
				error("This type string is way too long (> 28 chars)!)")
			end
		end
		i = i + 1
	end
	return typeList
end

return p