Difference between revisions of "Module:Buildings"

From Foundation - Wiki
Jump to navigation Jump to search
(Created page with "return { ['apiary'] = { workers = 2, products = { 'honey', 'wax' }, requirements = { planks = 30, tools = 5 }, maintenance = 10 } }")
 
Line 6: Line 6:
'wax'
'wax'
},
},
requirements = {
construction = {
planks = 30,
planks = 30,
tools = 5
tools = 5

Revision as of 20:38, 11 August 2022

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

return {
	['apiary'] = {
		workers = 2,
		products = {
			'honey',
			'wax'
		},
		construction = {
			planks = 30,
			tools = 5
		},
		maintenance = 10
	}
}