Toggle menu
505
2.3K
828
21.8K
Deadlock Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:ItemStatTable

From Deadlock Wiki

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

local ItemsByStat = require('Module:ItemsByStat')

local t = {}

t.tablefy = function(frame)
	local stat = frame.args[1]
	local tabledata = ItemsByStat.select(stat)
	return "Name: "..tabledata[1][1].."	Weapon Damage:"..tabledata[2][1]
end

return t