Module:BuildingData

From Corsair Cove Official Wiki
Revision as of 15:59, 1 August 2026 by Dorce (talk | contribs)

This module provides data for all buildings in the game to be used by other modules.

It provides information in a nested data structure in the lua format. You can change building data and add new buildings by copy-pasting existing buildings and modifying the data appropiately. Please note that any text should be enclosed inside "" and any numeric values should not be enclosed in "" (to match the native lua format for strings and integers).

This Module is used in:


return {
	["Woodcutter"] = {
		["name"] = "Woodcutter",
		["building_icon_filename"] = "T ICO resource Hardwood.png",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Hardwood",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Sawmill"] = {
		["name"] = "Sawmill",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 10
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 4
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Planks",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Quarry"] = {
		["name"] = "Quarry",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Stone",
		["production_output_qty"] = 6,
		["production_base_per_min"] = 6,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Stonecutter"] = {
		["name"] = "Stonecutter",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 12
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Stone",
				["qty"] = 2
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Stone Blocks",
		["production_output_qty"] = 5,
		["production_base_per_min"] = 5,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Charburner"] = {
		["name"] = "Charburner",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 6
			},
					{
				["resource"] = "Stone",
				["qty"] = 2
			}
		},
		["production_output"] = "Charcoal",
		["production_output_qty"] = 16,
		["production_base_per_min"] = 16,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Guano Gatherer"] = {
		["name"] = "Guano Gatherer",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Guano",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Powdermill"] = {
		["name"] = "Powdermill",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Guano",
				["qty"] = 6
			},
					{
				["resource"] = "Charcoal",
				["qty"] = 2
			}
		},
		["production_output"] = "Black Powder",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Leafcutter"] = {
		["name"] = "Leafcutter",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Fiber",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Rope Maker"] = {
		["name"] = "Rope Maker",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Fiber",
				["qty"] = 4
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Rope",
		["production_output_qty"] = 6,
		["production_base_per_min"] = 6,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Hardwood Workshop"] = {
		["name"] = "Hardwood Workshop",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 1,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 15
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 2
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Wooden Awl",
		["production_output_qty"] = 6,
		["production_base_per_min"] = 6,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Weaver"] = {
		["name"] = "Weaver",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 5,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 3,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 3,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 15
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Wooden Awl",
				["qty"] = 6
			},
					{
				["resource"] = "Fiber",
				["qty"] = 4
			}
		},
		["production_output"] = "Fabric",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Sail Maker"] = {
		["name"] = "Sail Maker",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 6,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 5,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 5,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Fabric",
				["qty"] = 8
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Sails",
		["production_output_qty"] = 4,
		["production_base_per_min"] = 4,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Campfire"] = {
		["name"] = "Campfire",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 10
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Stew",
		["production_output_qty"] = 16,
		["production_base_per_min"] = 16,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Pig Herder"] = {
		["name"] = "Pig Herder",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Pig",
		["production_output_qty"] = 4,
		["production_base_per_min"] = 4,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Buccaneer Grill"] = {
		["name"] = "Buccaneer Grill",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Pig",
				["qty"] = 2
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Stew",
		["production_output_qty"] = 35,
		["production_base_per_min"] = 35,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Fishing Hut"] = {
		["name"] = "Fishing Hut",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Fish",
		["production_output_qty"] = 16,
		["production_base_per_min"] = 16,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Cistern"] = {
		["name"] = "Cistern",
		["building_icon_filename"] = "",
		["category"] = "Drink",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 3,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 3,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Fresh Water",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Stew Kitchen"] = {
		["name"] = "Stew Kitchen",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Fish",
				["qty"] = 8
			},
					{
				["resource"] = "Fresh Water",
				["qty"] = 4
			}
		},
		["production_output"] = "Stew",
		["production_output_qty"] = 55,
		["production_base_per_min"] = 55,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Casssava Picker"] = {
		["name"] = "Casssava Picker",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Cassava Roots",
		["production_output_qty"] = 4,
		["production_base_per_min"] = 4,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Saltern"] = {
		["name"] = "Saltern",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Salt",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Cassava Oven"] = {
		["name"] = "Cassava Oven",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 1,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Cassava Roots",
				["qty"] = 4
			},
					{
				["resource"] = "Salt",
				["qty"] = 4
			}
		},
		["production_output"] = "Cassava Bread",
		["production_output_qty"] = 20,
		["production_base_per_min"] = 20,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Moonshine Still"] = {
		["name"] = "Moonshine Still",
		["building_icon_filename"] = "",
		["category"] = "Drink",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 5
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Booze",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Sugar Cane Farm"] = {
		["name"] = "Sugar Cane Farm",
		["building_icon_filename"] = "",
		["category"] = "Drink",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 1,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 1,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Sugar Cane",
		["production_output_qty"] = 4,
		["production_base_per_min"] = 4,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Cooper"] = {
		["name"] = "Cooper",
		["building_icon_filename"] = "",
		["category"] = "Drink",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 4
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Barrel",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Distillery"] = {
		["name"] = "Distillery",
		["building_icon_filename"] = "",
		["category"] = "Drink",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Barrel",
				["qty"] = 4
			},
					{
				["resource"] = "Sugar Cane",
				["qty"] = 4
			}
		},
		["production_output"] = "Rum",
		["production_output_qty"] = 20,
		["production_base_per_min"] = 20,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Lime Kiln"] = {
		["name"] = "Lime Kiln",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Lime",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Shell Farm"] = {
		["name"] = "Shell Farm",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 40
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Seashells",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tabby Cradle"] = {
		["name"] = "Tabby Cradle",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Lime",
				["qty"] = 4
			},
					{
				["resource"] = "Seashells",
				["qty"] = 4
			}
		},
		["production_output"] = "Tabbby",
		["production_output_qty"] = 4,
		["production_base_per_min"] = 4,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Turtle Catcher"] = {
		["name"] = "Turtle Catcher",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "Tabby",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Turtles",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Soup Kitchen"] = {
		["name"] = "Soup Kitchen",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 10
			},
					{
				["resource"] = "Tabby",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Turtles",
				["qty"] = 4
			},
					{
				["resource"] = "Fresh Water",
				["qty"] = 4
			}
		},
		["production_output"] = "Turtle Soup",
		["production_output_qty"] = 15,
		["production_base_per_min"] = 15,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Herbalist"] = {
		["name"] = "Herbalist",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Herbs",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Apothecary"] = {
		["name"] = "Apothecary",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 35
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Herbs",
				["qty"] = 8
			},
					{
				["resource"] = "Fresh Water",
				["qty"] = 6
			}
		},
		["production_output"] = "Medicine",
		["production_output_qty"] = 15,
		["production_base_per_min"] = 15,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tanner"] = {
		["name"] = "Tanner",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 1,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Pig",
				["qty"] = 2
			},
					{
				["resource"] = "Salt",
				["qty"] = 4
			}
		},
		["production_output"] = "Leather",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Cobbler"] = {
		["name"] = "Cobbler",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Leather",
				["qty"] = 6
			},
					{
				["resource"] = "Wooden Awl",
				["qty"] = 2
			}
		},
		["production_output"] = "Boots",
		["production_output_qty"] = 20,
		["production_base_per_min"] = 20,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Slop Shop"] = {
		["name"] = "Slop Shop",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 6,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Fabric",
				["qty"] = 2
			},
					{
				["resource"] = "Leather",
				["qty"] = 12
			}
		},
		["production_output"] = "Slops",
		["production_output_qty"] = 15,
		["production_base_per_min"] = 15,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Cochineal Harvester"] = {
		["name"] = "Cochineal Harvester",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Cochineal",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Pigment Maker"] = {
		["name"] = "Pigment Maker",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Cochineal",
				["qty"] = 4
			},
					{
				["resource"] = "Lime",
				["qty"] = 2
			}
		},
		["production_output"] = "Colour Pigment",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Ink Maker"] = {
		["name"] = "Ink Maker",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Colour Pigment",
				["qty"] = 2
			},
					{
				["resource"] = "Fresh Water",
				["qty"] = 2
			}
		},
		["production_output"] = "Tattoo Ink",
		["production_output_qty"] = 15,
		["production_base_per_min"] = 15,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Master Carver"] = {
		["name"] = "Master Carver",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 15
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 8
			},
					{
				["resource"] = "Colour Pigment",
				["qty"] = 8
			}
		},
		["production_output"] = "Figurehead",
		["production_output_qty"] = 2,
		["production_base_per_min"] = 2,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Bird Catcher"] = {
		["name"] = "Bird Catcher",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 3,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 3,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 10
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Birds",
		["production_output_qty"] = 6,
		["production_base_per_min"] = 6,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Rotisserie"] = {
		["name"] = "Rotisserie",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 1,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Birds",
				["qty"] = 2
			},
					{
				["resource"] = "Herbs",
				["qty"] = 4
			}
		},
		["production_output"] = "Roast Bird",
		["production_output_qty"] = 30,
		["production_base_per_min"] = 30,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Lead Mine"] = {
		["name"] = "Lead Mine",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 40
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Lead Ore",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Lead Smelter"] = {
		["name"] = "Lead Smelter",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 45
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Lead Ore",
				["qty"] = 4
			},
					{
				["resource"] = "Charcoal",
				["qty"] = 4
			}
		},
		["production_output"] = "Lead",
		["production_output_qty"] = 4,
		["production_base_per_min"] = 4,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Lead Workshop"] = {
		["name"] = "Lead Workshop",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 45
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Lead",
				["qty"] = 4
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Cannonball",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tar Kiln"] = {
		["name"] = "Tar Kiln",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 2
			},
					{
				["resource"] = "Charcoal",
				["qty"] = 4
			}
		},
		["production_output"] = "Tar",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tar Boiler"] = {
		["name"] = "Tar Boiler",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Tar",
				["qty"] = 4
			},
					{
				["resource"] = "Barrel",
				["qty"] = 8
			}
		},
		["production_output"] = "Pitch",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Copper Mine"] = {
		["name"] = "Copper Mine",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 0
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Copper Ore",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Bloomery"] = {
		["name"] = "Bloomery",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 2,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 0
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Copper Ore",
				["qty"] = 4
			},
					{
				["resource"] = "Charcoal",
				["qty"] = 8
			}
		},
		["production_output"] = "Copper",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Hammermill"] = {
		["name"] = "Hammermill",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 1,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 15
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Copper",
				["qty"] = 6
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Fittings",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Iron Mine"] = {
		["name"] = "Iron Mine",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Iron Ore",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Iron Caster"] = {
		["name"] = "Iron Caster",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 6,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 4,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 40
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Iron Ore",
				["qty"] = 4
			},
					{
				["resource"] = "Charcoal",
				["qty"] = 4
			}
		},
		["production_output"] = "Cast Iron",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tool Maker"] = {
		["name"] = "Tool Maker",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 6,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 4,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 4,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Cast Iron",
				["qty"] = 4
			},
					{
				["resource"] = "Stone",
				["qty"] = 4
			}
		},
		["production_output"] = "Tools",
		["production_output_qty"] = 8,
		["production_base_per_min"] = 8,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Steel Foundry"] = {
		["name"] = "Steel Foundry",
		["building_icon_filename"] = "",
		["category"] = "Materials",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 8,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 6,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 6,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 6,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 40
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Iron Ore",
				["qty"] = 8
			},
					{
				["resource"] = "Charcoal",
				["qty"] = 12
			}
		},
		["production_output"] = "Steel",
		["production_output_qty"] = 6,
		["production_base_per_min"] = 6,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Eyepatch Maker"] = {
		["name"] = "Eyepatch Maker",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 1,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 1,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Leather",
				["qty"] = 2
			},
					{
				["resource"] = "Fiber",
				["qty"] = 2
			}
		},
		["production_output"] = "Eyepatch",
		["production_output_qty"] = 15,
		["production_base_per_min"] = 15,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Limb Maker"] = {
		["name"] = "Limb Maker",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Hardwood",
				["qty"] = 4
			},
					{
				["resource"] = "Steel",
				["qty"] = 2
			}
		},
		["production_output"] = "Prosthesis",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tack Oven"] = {
		["name"] = "Tack Oven",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 35
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Grain",
				["qty"] = 12
			},
					{
				["resource"] = "Fresh Water",
				["qty"] = 2
			}
		},
		["production_output"] = "Hardtack",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Provisioner"] = {
		["name"] = "Provisioner",
		["building_icon_filename"] = "",
		["category"] = "Food",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 1,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 1,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Coins",
				["qty"] = 500
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Cassava Bread",
				["qty"] = 4
			},
					{
				["resource"] = "Herbs",
				["qty"] = 4
			}
		},
		["production_output"] = "Hardtack",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Weaponsmith"] = {
		["name"] = "Weaponsmith",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 50
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Steel",
				["qty"] = 4
			},
					{
				["resource"] = "Stone",
				["qty"] = 4
			}
		},
		["production_output"] = "Sabres",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Pearl Diver"] = {
		["name"] = "Pearl Diver",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 5,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 5,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "Stew",
		["hands_upkeep_1_qty"] = 5,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "Tabby",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Pearl",
		["production_output_qty"] = 12,
		["production_base_per_min"] = 12,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Jeweller"] = {
		["name"] = "Jeweller",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 1,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 1,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 40
			},
					{
				["resource"] = "Tabby",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Pearl",
				["qty"] = 4
			},
					{
				["resource"] = "Tools",
				["qty"] = 4
			}
		},
		["production_output"] = "Jewellery",
		["production_output_qty"] = 5,
		["production_base_per_min"] = 5,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Chain Smith"] = {
		["name"] = "Chain Smith",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Steel",
				["qty"] = 4
			},
					{
				["resource"] = "Tools",
				["qty"] = 8
			}
		},
		["production_output"] = "Steel Chains",
		["production_output_qty"] = 5,
		["production_base_per_min"] = 5,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Lamp Maker"] = {
		["name"] = "Lamp Maker",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 1,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 1,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 1,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "Tabby",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Copper",
				["qty"] = 8
			},
					{
				["resource"] = "Blubber",
				["qty"] = 10
			}
		},
		["production_output"] = "Copper Lamp",
		["production_output_qty"] = 5,
		["production_base_per_min"] = 5,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Copper Smith"] = {
		["name"] = "Copper Smith",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 35
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "Coins",
				["qty"] = 500
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Copper",
				["qty"] = 8
			},
					{
				["resource"] = "Hardwood",
				["qty"] = 8
			}
		},
		["production_output"] = "Copper Lamp",
		["production_output_qty"] = 5,
		["production_base_per_min"] = 5,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Spyglass Maker"] = {
		["name"] = "Spyglass Maker",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Lens",
				["qty"] = 8
			},
					{
				["resource"] = "Leather",
				["qty"] = 4
			}
		},
		["production_output"] = "Spyglass",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tinkerer"] = {
		["name"] = "Tinkerer",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 20
			},
					{
				["resource"] = "Coins",
				["qty"] = 500
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Tools",
				["qty"] = 2
			},
					{
				["resource"] = "Lime",
				["qty"] = 2
			}
		},
		["production_output"] = "Spyglass",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Cannon Foundry"] = {
		["name"] = "Cannon Foundry",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 6,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 4,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 4,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 25
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 50
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Cast Iron",
				["qty"] = 8
			},
					{
				["resource"] = "Cannonball",
				["qty"] = 2
			}
		},
		["production_output"] = "Naval Gun",
		["production_output_qty"] = 4,
		["production_base_per_min"] = 4,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Flag Maker"] = {
		["name"] = "Flag Maker",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Fabric",
				["qty"] = 6
			},
					{
				["resource"] = "Colour Pigment",
				["qty"] = 4
			}
		},
		["production_output"] = "Jolly Roger",
		["production_output_qty"] = 10,
		["production_base_per_min"] = 10,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Shot Tower"] = {
		["name"] = "Shot Tower",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 6,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 4,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 4,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 4,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 40
			},
					{
				["resource"] = "Tabby",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Lead",
				["qty"] = 2
			},
					{
				["resource"] = "Copper",
				["qty"] = 4
			}
		},
		["production_output"] = "Shot",
		["production_output_qty"] = 20,
		["production_base_per_min"] = 20,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Pistol Maker"] = {
		["name"] = "Pistol Maker",
		["building_icon_filename"] = "",
		["category"] = "Weapons",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "Tabby",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Steel",
				["qty"] = 2
			},
					{
				["resource"] = "Shot",
				["qty"] = 10
			}
		},
		["production_output"] = "Pistols",
		["production_output_qty"] = 5,
		["production_base_per_min"] = 5,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Master Tailor"] = {
		["name"] = "Master Tailor",
		["building_icon_filename"] = "",
		["category"] = "Equipment",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Tabby",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Pearl",
				["qty"] = 2
			},
					{
				["resource"] = "Fabric",
				["qty"] = 4
			}
		},
		["production_output"] = "Fancy Clothing",
		["production_output_qty"] = 5,
		["production_base_per_min"] = 5,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Silver Smith"] = {
		["name"] = "Silver Smith",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "Tabby",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Silver",
				["qty"] = 14
			},
					{
				["resource"] = "Tools",
				["qty"] = 4
			}
		},
		["production_output"] = "Silver Lining",
		["production_output_qty"] = 2,
		["production_base_per_min"] = 2,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Master Shipwright"] = {
		["name"] = "Master Shipwright",
		["building_icon_filename"] = "",
		["category"] = "Ships",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 4,
		["hands_fetchers"] = 2,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 2,
		["hands_upkeep_1"] = "Booze",
		["hands_upkeep_1_qty"] = 2,
		["hands_upkeep_2"] = "Roast Bird",
		["hands_upkeep_2_qty"] = 2,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 30
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "Coins",
				["qty"] = 500
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Steel",
				["qty"] = 2
			},
					{
				["resource"] = "Hardwood",
				["qty"] = 6
			}
		},
		["production_output"] = "Silver Lining",
		["production_output_qty"] = 2,
		["production_base_per_min"] = 2,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Tent"] = {
		["name"] = "Tent",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 2,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 2
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Classy Cabin"] = {
		["name"] = "Classy Cabin",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Notoriety",
		["description"] = "",
		["unlocked_by_1"] = "3 [[Notoriety]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 12,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Coins",
				["qty"] = 5
			},
					{
				["resource"] = "Stone Blocks",
				["qty"] = 10
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Classy House"] = {
		["name"] = "Classy House",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Notoriety",
		["description"] = "",
		["unlocked_by_1"] = "12 [[Notoriety]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 25,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Coins",
				["qty"] = 10
			},
					{
				["resource"] = "Tabby",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Bloody Cabin"] = {
		["name"] = "Bloody Cabin",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Empire",
		["description"] = "",
		["unlocked_by_1"] = "3 [[Empire]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 8,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Bloody House"] = {
		["name"] = "Bloody House",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Empire",
		["description"] = "",
		["unlocked_by_1"] = "12 [[Empire]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 20,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Tabby",
				["qty"] = 30
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Salty Cabin"] = {
		["name"] = "Salty Cabin",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Seafaring",
		["description"] = "",
		["unlocked_by_1"] = "3 [[Seafaring]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 8,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 10
			},
					{
				["resource"] = "Rope",
				["qty"] = 15
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Salty House"] = {
		["name"] = "Salty House",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Seafaring",
		["description"] = "",
		["unlocked_by_1"] = "12 [[Seafaring]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 20,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Rope",
				["qty"] = 30
			},
					{
				["resource"] = "Sails",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Fancy Cabin"] = {
		["name"] = "Fancy Cabin",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Wealth",
		["description"] = "",
		["unlocked_by_1"] = "3 [[Wealth]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 12,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Coins",
				["qty"] = 12
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Fancy House"] = {
		["name"] = "Fancy House",
		["building_icon_filename"] = "",
		["category"] = "Housing",
		["theme"] = "Wealth",
		["description"] = "",
		["unlocked_by_1"] = "12 [[Wealth]]",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 25,
		["hands_builders"] = 0,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Coins",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Pirate Camp"] = {
		["name"] = "Pirate Camp",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "Camp",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Warehouse"] = {
		["name"] = "Warehouse",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 10
			},
					{
				["resource"] = "Coins",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Galley"] = {
		["name"] = "Galley",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "Galley",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "Stew",
				["qty"] = 1
			},
			{
				["resource"] = "Cassava Bread",
				["qty"] = 1
			},
			{
				["resource"] = "Roast Bird",
				["qty"] = 1
			},
			{
				["resource"] = "Turtle Soup",
				["qty"] = 1
			}
		}
	},
	["Tavern"] = {
		["name"] = "Tavern",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "Tavern",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
					{
				["resource"] = "Planks",
				["qty"] = 15
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "Booze",
				["qty"] = 1
			},
			{
				["resource"] = "Rum",
				["qty"] = 1
			},
			{
				["resource"] = "Wine",
				["qty"] = 1
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Outfitter"] = {
		["name"] = "Outfitter",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Planks",
				["qty"] = 30
			},
			{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "Boots",
				["qty"] = 1
			},
			{
				["resource"] = "Slops",
				["qty"] = 1
			},
			{
				["resource"] = "Fancy Clothing",
				["qty"] = 1
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Barber Surgeon"] = {
		["name"] = "Barber Surgeon",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Planks",
				["qty"] = 30
			},
			{
				["resource"] = "Stone Blocks",
				["qty"] = 25
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "Medicine",
				["qty"] = 1
			},
			{
				["resource"] = "Eyepatch",
				["qty"] = 1
			},
			{
				["resource"] = "Prosthesis",
				["qty"] = 1
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Marketplace"] = {
		["name"] = "Marketplace",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Stone Blocks",
				["qty"] = 30
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "Tobacco",
				["qty"] = 1
			},
			{
				["resource"] = "Tattoo Ink",
				["qty"] = 1
			},
			{
				["resource"] = "Jewellery",
				["qty"] = 1
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Arsenal"] = {
		["name"] = "Arsenal",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Stone Blocks",
				["qty"] = 50
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "Sabres",
				["qty"] = 1
			},
			{
				["resource"] = "Pistols",
				["qty"] = 1
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Expedition Supplier"] = {
		["name"] = "Expedition Supplier",
		["building_icon_filename"] = "",
		["category"] = "Community",
		["theme"] = "",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Planks",
				["qty"] = 35
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "Spyglass",
				["qty"] = 1
			},
			{
				["resource"] = "Hardtack",
				["qty"] = 1
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Shallow Pier"] = {
		["name"] = "Shallow Pier",
		["building_icon_filename"] = "T ICO Pier lvl 1.png",
		["category"] = "Community",
		["theme"] = "Pier",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 2,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Planks",
				["qty"] = 30
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Trade Pier"] = {
		["name"] = "Trade Pier",
		["building_icon_filename"] = "T ICO Pier lvl 2.png",
		["category"] = "Community",
		["theme"] = "Pier",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 10,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Planks",
				["qty"] = 60
			},
			{
				["resource"] = "Stone Blocks",
				["qty"] = 60
			},
					{
				["resource"] = "Rope",
				["qty"] = 20
			},
					{
				["resource"] = "Coins",
				["qty"] = 500
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Deep-Water Pier"] = {
		["name"] = "Deep-Water Pier",
		["building_icon_filename"] = "T ICO Pier lvl 3.png",
		["category"] = "Community",
		["theme"] = "Pier",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 10,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Planks",
				["qty"] = 120
			},
			{
				["resource"] = "Stone Blocks",
				["qty"] = 90
			},
					{
				["resource"] = "Rope",
				["qty"] = 20
			},
					{
				["resource"] = "Tabby",
				["qty"] = 60
			},
					{
				["resource"] = "Coins",
				["qty"] = 500
			},
					{
				["resource"] = "Silver",
				["qty"] = 100
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "",
		["production_output_qty"] = 0,
		["production_base_per_min"] = 0,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Small Gun Tower"] = {
		["name"] = "Small Gun Tower",
		["building_icon_filename"] = "T ICO Building Tower lvl 1.png",
		["category"] = "Community",
		["theme"] = "Defense",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 3,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Stone Blocks",
				["qty"] = 50
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Black Powder",
				["qty"] = 10
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["production_output"] = "Ammunition",
		["production_output_qty"] = 0.3,
		["production_base_per_min"] = 0.3,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Medium Gun Tower"] = {
		["name"] = "Medium Gun Tower",
		["building_icon_filename"] = "T ICO Building Tower lvl 2.png",
		["category"] = "Community",
		["theme"] = "Defense",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 5,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Stone Blocks",
				["qty"] = 70
			},
			{
				["resource"] = "Tabby",
				["qty"] = 20
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Black Powder",
				["qty"] = 10
			},
					{
				["resource"] = "Cannonball",
				["qty"] = 4
			}
		},
		["production_output"] = "Ammunition",
		["production_output_qty"] = 0.3,
		["production_base_per_min"] = 0.3,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	},
	["Large Gun Tower"] = {
		["name"] = "Large Gun Tower",
		["building_icon_filename"] = "T ICO Building Tower lvl 3.png",
		["category"] = "Community",
		["theme"] = "Defense",
		["description"] = "",
		["unlocked_by_1"] = "",
		["unlocked_by_2"] = "",
		["unlocked_by_3"] = "",
		["housing"] = 0,
		["hands_builders"] = 5,
		["hands_fetchers"] = 0,
		["hands_greenhands"] = 0,
		["hands_masterhands"] = 0,
		["hands_upkeep_1"] = "",
		["hands_upkeep_1_qty"] = 0,
		["hands_upkeep_2"] = "",
		["hands_upkeep_2_qty"] = 0,
		["hands_upkeep_3"] = "",
		["hands_upkeep_3_qty"] = 0,
		["construction"] = 	{
			{
				["resource"] = "Stone Blocks",
				["qty"] = 100
			},
			{
				["resource"] = "Tabby",
				["qty"] = 100
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			},
					{
				["resource"] = "",
				["qty"] = 0
			}
		},
		["construction_requires_fertile_area"] = false,
		["production_input"] = 	{
					{
				["resource"] = "Black Powder",
				["qty"] = 10
			},
					{
				["resource"] = "Cannonball",
				["qty"] = 4
			}
		},
		["production_output"] = "Ammunition",
		["production_output_qty"] = 0.3,
		["production_base_per_min"] = 0.3,
		["production_booster_1"] = "",
		["production_booster_2"] = "",
		["production_output_storage"] = 0,
		["community_upkeep"] = {
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			},
			{
				["resource"] = "",
				["qty"] = 0
			}
		}
	}
}