Модуль:TableOfChemicals

Материал из Space Station 14 Вики

Для документации этого модуля может быть создана страница Модуль:TableOfChemicals/doc

p = {}

p.fillTable = function(frame)
	local out = {}

	for idx = 1, 5 do
		table.insert(out, idx)
	end

	return table.concat(out, "<br>")
end

p.fillEffectsTable = function(frame)
	local out = {}

	for idx = 1, 5 do
		table.insert(out, idx)
	end

	return "effects"
end

return p