Module:Crafting: Difference between revisions

From Vintage Story Wiki
mNo edit summary
mNo edit summary
Line 34: Line 34:
end
end
local body = header .. '<tr style="text-align:center;"><td>' .. ingredients .. '</td>' .. backgroud .. hCells .. '</td>'  
local body = header .. '<tr style="text-align:center;"><td>' .. ingredients .. '</td>' .. background .. hCells .. '</td>'  


if notes ~= '' then
if notes ~= '' then

Revision as of 21:37, 22 August 2022

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

local p = {}

function p.main(f)
	local args = require( 'Module:ProcessArgs' ).merge( true )
	
	local cells = {'A1', 'B1', 'C1', 'A2', 'B2', 'C2', 'A3', 'B3', 'C3', 'out'}
	
	local inputItems = {}
	for cell in pairs(cells) do
		if cell ~= '' then
			table.insert(inputItems, cell)
		end
	end
	
	local ingredients = {}
	ingredients = table.concat(inputItems, ' + \n')
	ingredients = tostring(ingredients)
		
	local background = '<td><div style="position:relative; width:170px; height:240px; background: rgb(91,76,62); background: linear-gradient(to bottom, rgba(91,76,62,1) 0px, rgba(91,76,62,0) 15px, rgba(56,43,30,0) calc(100% - 15px), rgba(56,43,30,1) 100%), linear-gradient(to left, rgba(91,76,62,1) 0px, rgba(69,52,36,1) 15px, #403529 50%, rgba(69,52,36,1) calc(100% - 15px), rgba(56,43,30,1) 100%);">'
	local notes
	if args.notes then
		notes = '<th style="width:400px"><b>Notes</b></th>'
	else
		notes = ''
	end
	local header
	if args.header then
		header = '<table class="wikitable mw-collapsible"> <tr><th style="width:200px"><b>Ingredients</b></th> <th><b>Crafting recipe</b></th>' .. notes .. '</tr>'
	end
	
	local hCells = ''
	for i,v in pairs(cells) do
		hCells = hCells .. '{{Item cell|' .. i .. '|{{{' .. cells[i] .. '|}}}|{{{' .. cells[i] .. '_alt|}}} }}'
	end
	
	local body = header .. '<tr style="text-align:center;"><td>' .. ingredients .. '</td>' .. background .. hCells .. '</td>' 

	if notes ~= '' then
		body = body .. '<td style="text-align:left;">' .. notes .. '</td>'
	end
	
	body = body .. '</tr>'
	
	if args.footer then
		body = body .. '</table>'
	end
	
	return body
end
return p