Module:ResourceData: Difference between revisions
From Corsair Cove Official Wiki
No edit summary |
No edit summary |
||
| (19 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
return { | return { | ||
Coins = { | |||
name = "Coins", | |||
category = "Resource", | |||
icon_file = "T_ICO_resource_coin.png", | |||
source = {}, | |||
production = { | |||
source1 = "", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 0, | |||
stack_value = 0, | |||
}, | |||
Ammunition = { | |||
name = "Ammunition", | |||
category = "Ammunition", | |||
icon_file = "T_ICO_Loaded_Gun.png", | |||
source = {}, | |||
production = { | |||
source1 = "Small Gun Tower", | |||
quantity1 = 0.3, | |||
recipe1 = { | |||
ingredient1 = "Black Powder", | |||
ingredient1_qty = 10, | |||
}, | |||
source2 = "Medium Gun Tower", | |||
quantity2 = 0.3, | |||
recipe2 = { | |||
ingredient1 = "Black Powder", | |||
ingredient1_qty = 10, | |||
ingredient2 = "Cannonball", | |||
ingredient2_qty = 4, | |||
}, | |||
source3 = "Large Gun Tower", | |||
quantity3 = 0.3, | |||
recipe3 = { | |||
ingredient1 = "Black Powder", | |||
ingredient1_qty = 10, | |||
ingredient2 = "Cannonball", | |||
ingredient2_qty = 4, | |||
}, | |||
}, | |||
stack_size = 1, | |||
stack_value = 0, | |||
}, | |||
Planks = { | |||
name = "Planks", | |||
category = "Construction Resource", | |||
icon_file = "T_ICO_resource_plank.png", | |||
source = { | |||
"Sawmill", | |||
}, | |||
production = { | |||
source1 = "Sawmill", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Hardwood", | |||
ingredient1_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 18, | |||
}, | |||
["Stone Blocks"] = { | |||
name = "Stone Blocks", | |||
category = "Construction Resource", | |||
icon_file = "T_ICO_resource_stoneBlocks.png", | |||
source = { | |||
"Stonecutter", | |||
}, | |||
production = { | |||
source1 = "Stonecutter", | |||
quantity1 = 5, | |||
recipe1 = { | |||
ingredient1 = "Stone", | |||
ingredient1_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 15, | |||
}, | |||
Rope = { | |||
name = "Rope", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_rope.png", | |||
source = { | |||
"Rope Maker", | |||
}, | |||
production = { | |||
source1 = "Rope Maker", | |||
quantity1 = 6, | |||
recipe1 = { | |||
ingredient1 = "Fibre", | |||
ingredient1_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 37, | |||
}, | |||
Sails = { | |||
name = "Sails", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_Sails.png", | |||
source = { | |||
"Sail Maker", | |||
}, | |||
production = { | |||
source1 = "Sail Maker", | |||
quantity1 = 4, | |||
recipe1 = { | |||
ingredient1 = "Fabric", | |||
ingredient1_qty = 8, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 30, | |||
}, | |||
Tabby = { | |||
name = "Tabby", | |||
category = "Construction Resource", | |||
icon_file = "T_ICO_resource_tabbyConcrete.png", | |||
source = { | |||
"Tabby Cradle", | |||
}, | |||
production = { | |||
source1 = "Tabby Cradle", | |||
quantity1 = 4, | |||
recipe1 = { | |||
ingredient1 = "Seashells", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Lime", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 37, | |||
}, | |||
Fittings = { | |||
name = "Fittings", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_Fittings.png", | |||
source = { | |||
"Hammermill", | |||
}, | |||
production = { | |||
source1 = "Hammermill", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Copper", | |||
ingredient1_qty = 6, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 30, | |||
}, | |||
Pitch = { | |||
name = "Pitch", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_Pitch.png", | |||
source = { | |||
"Tar Boiler", | |||
}, | |||
production = { | |||
source1 = "Tar Boiler", | |||
quantity1 = 12, | |||
recipe1 = { | |||
ingredient1 = "Tar", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Barrel", | |||
ingredient2_qty = 8, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 25, | |||
}, | |||
Figurehead = { | |||
name = "Figurehead", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_Figurehead.png", | |||
source = { | |||
"Master Carver", | |||
}, | |||
production = { | |||
source1 = "Master Carver", | |||
quantity1 = 2, | |||
recipe1 = { | |||
ingredient1 = "Hardwood", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Colour Pigment", | |||
ingredient2_qty = 8, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 25, | |||
stack_value = 18, | |||
}, | |||
["Naval Gun"] = { | |||
name = "Naval Gun", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_navalCannon.png", | |||
source = { | |||
"Cannon Foundry", | |||
}, | |||
production = { | |||
source1 = "Cannon Foundry", | |||
quantity1 = 4, | |||
recipe1 = { | |||
ingredient1 = "Cast Iron", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Cannonball", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 25, | |||
stack_value = 75, | |||
}, | |||
["Jolly Roger"] = { | |||
name = "Jolly Roger", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_JollyRoger.png", | |||
source = { | |||
"Flag Maker", | |||
}, | |||
production = { | |||
source1 = "Flag Maker", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Fabric", | |||
ingredient1_qty = 6, | |||
ingredient2 = "Colour Pigment", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 15, | |||
}, | |||
["Steel Chain"] = { | |||
name = "Steel Chain", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_SteelChain.png", | |||
source = { | |||
"Chain Smith", | |||
}, | |||
production = { | |||
source1 = "Chain Smith", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 25, | |||
stack_value = 30, | |||
}, | |||
["Silver Lining"] = { | |||
name = "Silver Lining", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_SilverDeco.png", | |||
source = { | |||
"Silver Smith", | |||
"Master Shipwright", | |||
}, | |||
production = { | |||
source1 = "Silver Smith", | |||
quantity1 = 2, | |||
recipe1 = { | |||
ingredient1 = "Silver", | |||
ingredient1_qty = 14, | |||
ingredient2 = "Tools", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "Master Shipwright", | |||
quantity2 = 2, | |||
recipe2 = { | |||
ingredient1 = "Steel", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Hardwood", | |||
ingredient2_qty = 6, | |||
}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 25, | |||
stack_value = 75, | |||
}, | |||
["Copper Lamp"] = { | |||
name = "Copper Lamp", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_CopperLamp.png", | |||
source = { | |||
"Lamp Maker", | |||
"Copper Smith", | |||
}, | |||
production = { | |||
source1 = "Lamp Maker", | |||
quantity1 = 5, | |||
recipe1 = { | |||
ingredient1 = "Copper", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Whale Oil", | |||
ingredient2_qty = 10, | |||
}, | |||
source2 = "Copper Smith", | |||
quantity2 = 5, | |||
recipe2 = { | |||
ingredient1 = "Copper", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Hardwood", | |||
ingredient2_qty = 8, | |||
}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 30, | |||
}, | |||
Stew = { | |||
name = "Stew", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_DefaultStew.png", | |||
source = { | |||
"Campfire", | |||
"Buccaneer Grill", | |||
"Stew Kitchen", | |||
}, | |||
production = { | |||
source1 = "Campfire", | |||
quantity1 = 16, | |||
recipe1 = {}, | |||
source2 = "Buccaneer Grill", | |||
quantity2 = 35, | |||
recipe2 = { | |||
ingredient1 = "Pig", | |||
ingredient1_qty = 2, | |||
}, | |||
source3 = "Stew Kitchen", | |||
quantity3 = 55, | |||
recipe3 = { | |||
ingredient1 = "Fish", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Fresh Water", | |||
ingredient2_qty = 4, | |||
}, | |||
}, | |||
stack_size = 500, | |||
stack_value = 12, | |||
}, | |||
Booze = { | |||
name = "Booze", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_DefaultAle.png", | |||
source = { | |||
"Moonshine Still", | |||
"Cider Press", | |||
"Brewery", | |||
}, | |||
production = { | |||
source1 = "Moonshine Still", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "Cider Press", | |||
quantity2 = 24, | |||
recipe2 = { | |||
ingredient1 = "Pineapple", | |||
ingredient1_qty = 8, | |||
}, | |||
source3 = "Brewery", | |||
quantity3 = 36, | |||
recipe3 = { | |||
ingredient1 = "Eggs", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Fresh Water", | |||
ingredient2_qty = 4, | |||
}, | |||
}, | |||
stack_size = 500, | |||
stack_value = 12, | |||
}, | |||
["Cassava Bread"] = { | |||
name = "Cassava Bread", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_CassavaBread.png", | |||
source = { | |||
"Cassava Oven", | |||
}, | |||
production = { | |||
source1 = "Cassava Oven", | |||
quantity1 = 20, | |||
recipe1 = { | |||
ingredient1 = "Cassava Roots", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Salt", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 40, | |||
}, | |||
Rum = { | |||
name = "Rum", | |||
category = "Drink Resource", | |||
icon_file = "T_ICO_resource_Rum.png", | |||
source = { | |||
"Distillery", | |||
}, | |||
production = { | |||
source1 = "Distillery", | |||
quantity1 = 20, | |||
recipe1 = { | |||
ingredient1 = "Barrel", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Sugar Cane", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 150, | |||
stack_value = 22, | |||
}, | |||
["Turtle Soup"] = { | |||
name = "Turtle Soup", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_turtleSoup.png", | |||
source = { | |||
"Soup Kitchen", | |||
}, | |||
production = { | |||
source1 = "Soup Kitchen", | |||
quantity1 = 15, | |||
recipe1 = { | |||
ingredient1 = "Turtles", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Fresh Water", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 150, | |||
stack_value = 15, | |||
}, | |||
Medicine = { | |||
name = "Medicine", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_medicine.png", | |||
source = { | |||
"Apothecary", | |||
}, | |||
production = { | |||
source1 = "Apothecary", | |||
quantity1 = 15, | |||
recipe1 = { | |||
ingredient1 = "Herbs", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Fresh Water", | |||
ingredient2_qty = 6, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 37, | |||
}, | |||
Slops = { | |||
name = "Slops", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Slops.png", | |||
source = { | |||
"Slop Shop", | |||
}, | |||
production = { | |||
source1 = "Slop Shop", | |||
quantity1 = 15, | |||
recipe1 = { | |||
ingredient1 = "Fabric", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Leather", | |||
ingredient2_qty = 12, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 25, | |||
}, | |||
Boots = { | |||
name = "Boots", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Boots.png", | |||
source = { | |||
"Cobbler", | |||
}, | |||
production = { | |||
source1 = "Cobbler", | |||
quantity1 = 20, | |||
recipe1 = { | |||
ingredient1 = "Leather", | |||
ingredient1_qty = 6, | |||
ingredient2 = "Wooden Awl", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 37, | |||
}, | |||
["Roast Bird"] = { | |||
name = "Roast Bird", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_RoastBird.png", | |||
source = { | |||
"Rotisserie", | |||
}, | |||
production = { | |||
source1 = "Rotisserie", | |||
quantity1 = 30, | |||
recipe1 = { | |||
ingredient1 = "Birds", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Herbs", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 300, | |||
stack_value = 48, | |||
}, | |||
Tobacco = { | |||
name = "Tobacco", | |||
category = "Raid Resource", | |||
icon_file = "T_ICO_resource_tabacco.png", | |||
source = {}, | |||
production = { | |||
source1 = "", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 1000, | |||
stack_value = 200, | |||
}, | |||
Wine = { | |||
name = "Wine", | |||
category = "Raid Resource", | |||
icon_file = "T_ICO_resource_wine.png", | |||
source = {}, | |||
production = { | |||
source1 = "", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 1000, | |||
stack_value = 200, | |||
}, | |||
Eyepatch = { | |||
name = "Eyepatch", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_EyePatch.png", | |||
source = { | |||
"Eyepatch Maker", | |||
}, | |||
production = { | |||
source1 = "Eyepatch Maker", | |||
quantity1 = 15, | |||
recipe1 = { | |||
ingredient1 = "Leather", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Fibre", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 200, | |||
stack_value = 20, | |||
}, | |||
["Tattoo Ink"] = { | |||
name = "Tattoo Ink", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_TattooInk.png", | |||
source = { | |||
"Ink Maker", | |||
}, | |||
production = { | |||
source1 = "Ink Maker", | |||
quantity1 = 15, | |||
recipe1 = { | |||
ingredient1 = "Colour Pigment", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Fresh Water", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 300, | |||
stack_value = 30, | |||
}, | |||
["Hardtack"] = { | |||
name = "Hardtack", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_HardTack.png", | |||
source = { | |||
"Tack Oven", | |||
"Provisioner", | |||
}, | |||
production = { | |||
source1 = "Tack Oven", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Grain", | |||
ingredient1_qty = 12, | |||
ingredient2 = "Fresh Water", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "Provisioner", | |||
quantity2 = 10, | |||
recipe2 = { | |||
ingredient1 = "Cassava Bread", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Herbs", | |||
ingredient2_qty = 4, | |||
}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 50, | |||
}, | |||
Spyglass = { | |||
name = "Spyglass", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Telescope.png", | |||
source = { | |||
"Spyglass Maker", | |||
"Tinkerer", | |||
}, | |||
production = { | |||
source1 = "Spyglass Maker", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Lens", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Leather", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "Tinkerer", | |||
quantity2 = 10, | |||
recipe2 = { | |||
ingredient1 = "Tools", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Lime", | |||
ingredient2_qty = 2, | |||
}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 50, | |||
}, | |||
Prosthesis = { | |||
name = "Prosthesis", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Prosthetics.png", | |||
source = { | |||
"Limb Maker", | |||
}, | |||
production = { | |||
source1 = "Limb Maker", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Hardwood", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Steel", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 50, | |||
}, | |||
Sabres = { | |||
name = "Sabres", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_cutlass.png", | |||
source = { | |||
"Weaponsmith", | |||
}, | |||
production = { | |||
source1 = "Weaponsmith", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Steel", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Stone", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 50, | |||
}, | |||
["Fancy Clothing"] = { | |||
name = "Fancy Clothing", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Garments.png", | |||
source = { | |||
"Master Tailor", | |||
}, | |||
production = { | |||
source1 = "Master Tailor", | |||
quantity1 = 5, | |||
recipe1 = { | |||
ingredient1 = "Pearl", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Fabric", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 50, | |||
}, | |||
Jewellery = { | |||
name = "Jewellery", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Jewelry.png", | |||
source = { | |||
"Jeweller", | |||
}, | |||
production = { | |||
source1 = "Jeweller", | |||
quantity1 = 5, | |||
recipe1 = { | |||
ingredient1 = "Pearl", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Tools", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 50, | |||
}, | |||
Shot = { | |||
name = "Shot", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_Shot.png", | |||
source = { | |||
"Shot Tower", | |||
}, | |||
production = { | |||
source1 = "Shot Tower", | |||
quantity1 = 20, | |||
recipe1 = { | |||
ingredient1 = "Lead", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Copper", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 0, | |||
stack_value = 0, | |||
}, | |||
Pistols = { | |||
name = "Pistols", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_Handgun04.png", | |||
source = { | |||
"Pistol Maker", | |||
}, | |||
production = { | |||
source1 = "Pistol Maker", | |||
quantity1 = 5, | |||
recipe1 = { | |||
ingredient1 = "Steel", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Shot", | |||
ingredient2_qty = 10, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 50, | |||
}, | |||
Hardwood = { | |||
name = "Hardwood", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_Hardwood.png", | |||
source = { | |||
"Woodcutter", | |||
}, | |||
production = { | |||
source1 = "Woodcutter", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 12, | |||
}, | |||
Stone = { | |||
name = "Stone", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_Stone.png", | |||
source = { | |||
"Quarry", | |||
}, | |||
production = { | |||
source1 = "Quarry", | |||
quantity1 = 6, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Guano = { | |||
name = "Guano", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_guano.png", | |||
source = { | |||
"Guano Gatherer", | |||
}, | |||
production = { | |||
source1 = "Guano Gatherer", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Charcoal = { | |||
name = "Charcoal", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_Charburner.png", | |||
source = { | |||
"Charburner", | |||
}, | |||
production = { | |||
source1 = "Charburner", | |||
quantity1 = 16, | |||
recipe1 = { | |||
ingredient1 = "Hardwood", | |||
ingredient1_qty = 6, | |||
ingredient2 = "Stone", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 35, | |||
}, | |||
["Black Powder"] = { | |||
name = "Black Powder", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_blackPowder.png", | |||
source = { | |||
"Powdermill", | |||
}, | |||
production = { | |||
source1 = "Powdermill", | |||
quantity1 = 10, | |||
recipe1 = { | |||
ingredient1 = "Guano", | |||
ingredient1_qty = 6, | |||
ingredient2 = "Charcoal", | |||
ingredient2_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 25, | |||
}, | |||
Fibre = { | |||
name = "Fibre", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_Fibres.png", | |||
source = { | |||
"Leafcutter", | |||
}, | |||
production = { | |||
source1 = "Leafcutter", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Pig = { | |||
name = "Pig", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_pig.png", | |||
source = { | |||
"Pig Herder", | |||
}, | |||
production = { | |||
source1 = "Pig Herder", | |||
quantity1 = 4, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 5, | |||
}, | |||
Fabric = { | |||
name = "Fabric", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_Canvas2.png", | |||
source = { | |||
"Weaver", | |||
}, | |||
production = { | |||
source1 = "Weaver", | |||
quantity1 = 8, | |||
recipe1 = { | |||
ingredient1 = "Wooden Awl", | |||
ingredient1_qty = 6, | |||
ingredient2 = "Fibre", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 28, | |||
}, | |||
["Wooden Awl"] = { | |||
name = "Wooden Awl", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_WoodenAwl.png", | |||
source = { | |||
"Wood Workshop", | |||
}, | |||
production = { | |||
source1 = "Hardwood Workshop", | |||
quantity1 = 6, | |||
recipe1 = { | |||
ingredient1 = "Hardwood", | |||
ingredient1_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 12, | |||
}, | |||
["Cassava Roots"] = { | |||
name = "Cassava Roots", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_cassavaRoot.png", | |||
source = { | |||
"Cassava Picker", | |||
}, | |||
production = { | |||
source1 = "Casssava Picker", | |||
quantity1 = 4, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 12, | |||
}, | |||
Salt = { | |||
name = "Salt", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_salt.png", | |||
source = { | |||
"Saltern", | |||
}, | |||
production = { | |||
source1 = "Saltern", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
["Sugar Cane"] = { | |||
name = "Sugar Cane", | |||
category = "Drink Resource", | |||
icon_file = "T_ICO_resource_sugarCane.png", | |||
source = { | |||
"Sugar Cane Farm", | |||
}, | |||
production = { | |||
source1 = "Sugar Cane Farm", | |||
quantity1 = 4, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 25, | |||
}, | |||
Barrel = { | |||
name = "Barrel", | |||
category = "Drink Resource", | |||
icon_file = "T_ICO_resource_Barrel.png", | |||
source = { | |||
"Cooper", | |||
}, | |||
production = { | |||
source1 = "Cooper", | |||
quantity1 = 12, | |||
recipe1 = { | |||
ingredient1 = "Hardwood", | |||
ingredient1_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 18, | |||
}, | |||
Pineapple = { | |||
name = "Pineapple", | |||
category = "Drink Resource", | |||
icon_file = "T_ICO_resource_pineapple.png", | |||
source = { | |||
"Pineapple Grove", | |||
}, | |||
production = { | |||
source1 = "Pineapple Grove", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
["Fresh Water"] = { | |||
name = "Fresh Water", | |||
category = "Drink Resource", | |||
icon_file = "T_ICO_resource_FreshWater.png", | |||
source = { | |||
"Cistern", | |||
}, | |||
production = { | |||
source1 = "Cistern", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 25, | |||
}, | |||
Turtles = { | |||
name = "Turtles", | |||
category = "Drink Resource", | |||
icon_file = "lT_ICO_iresource_turtule.png", | |||
source = { | |||
"Turtle Catcher", | |||
}, | |||
production = { | |||
source1 = "Turtle Catcher", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Herbs = { | |||
name = "Herbs", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_herbs.png", | |||
source = { | |||
"Herbalist", | |||
}, | |||
production = { | |||
source1 = "Herbalist", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 500, | |||
stack_value = 25, | |||
}, | |||
Leather = { | |||
name = "Leather", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Leather.png", | |||
source = { | |||
"Tanner", | |||
}, | |||
production = { | |||
source1 = "Tanner", | |||
quantity1 = 12, | |||
recipe1 = { | |||
ingredient1 = "Pig", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Salt", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 25, | |||
}, | |||
Lime = { | |||
name = "Lime", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_limestone.png", | |||
source = { | |||
"Lime Kiln", | |||
}, | |||
production = { | |||
source1 = "Lime Kiln", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Seashells = { | |||
name = "Seashells", | |||
category = "Materials Resource", | |||
icon_file = "lT_ICO_iresource_seashell.png", | |||
source = { | |||
"Shell Farm", | |||
}, | |||
production = { | |||
source1 = "Shell Farm", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Birds = { | |||
name = "Birds", | |||
category = "Food Resource", | |||
icon_file = "lT_ICO_iresource_bird.png", | |||
source = { | |||
"Bird Catcher", | |||
}, | |||
production = { | |||
source1 = "Bird Catcher", | |||
quantity1 = 6, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
["Copper Ore"] = { | |||
name = "Copper Ore", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_copper.png", | |||
source = { | |||
"Copper Mine", | |||
}, | |||
production = { | |||
source1 = "Copper Mine", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Copper = { | |||
name = "Copper", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_copperBars.png", | |||
source = { | |||
"Bloomery", | |||
}, | |||
production = { | |||
source1 = "Bloomery", | |||
quantity1 = 12, | |||
recipe1 = { | |||
ingredient1 = "Copper Ore", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Charcoal", | |||
ingredient2_qty = 8, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 18, | |||
}, | |||
Tar = { | |||
name = "Tar", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_Tar.png", | |||
source = { | |||
"Tar Kiln", | |||
}, | |||
production = { | |||
source1 = "Tar Kiln", | |||
quantity1 = 8, | |||
recipe1 = { | |||
ingredient1 = "Hardwood", | |||
ingredient1_qty = 2, | |||
ingredient2 = "Charcoal", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 93, | |||
}, | |||
Cochineal = { | |||
name = "Cochineal", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Cochineal.png", | |||
source = { | |||
"Cochineal Harvester", | |||
}, | |||
production = { | |||
source1 = "Cochineal Harvester", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 25, | |||
}, | |||
["Colour Pigment"] = { | |||
name = "Colour Pigment", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_ColorPigment.png", | |||
source = { | |||
"Pigment Maker", | |||
}, | |||
production = { | |||
source1 = "Pigment Maker", | |||
quantity1 = 8, | |||
recipe1 = { | |||
ingredient1 = "Cochineal", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Lime", | |||
ingredient2_qty = 2,}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 14, | |||
}, | |||
Fish = { | |||
name = "Fish", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_Fish.png", | |||
source = { | |||
"Fishing Hut", | |||
}, | |||
production = { | |||
source1 = "Fishing Hut", | |||
quantity1 = 16, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
["Lead Ore"] = { | |||
name = "Lead Ore", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_LeadOre.png", | |||
source = { | |||
"Lead Mine", | |||
}, | |||
production = { | |||
source1 = "Lead Mine", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Lead = { | |||
name = "Lead", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_Lead.png", | |||
source = { | |||
"Lead Smelter", | |||
}, | |||
production = { | |||
source1 = "Lead Smelter", | |||
quantity1 = 4, | |||
recipe1 = { | |||
ingredient1 = "Lead Ore", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Charcoal", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 18, | |||
}, | |||
Cannonball = { | |||
name = "Cannonball", | |||
category = "Weapons Resource", | |||
icon_file = "T_ICO_resource_CannonballMetall.png", | |||
source = { | |||
"Lead Workshop", | |||
}, | |||
production = { | |||
source1 = "Lead Workshop", | |||
quantity1 = 12, | |||
recipe1 = { | |||
ingredient1 = "Lead", | |||
ingredient1_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 40, | |||
}, | |||
["Iron Ore"] = { | |||
name = "Iron Ore", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_ironOre.png", | |||
source = { | |||
"Iron Mine", | |||
}, | |||
production = { | |||
source1 = "Iron Mine", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
["Cast Iron"] = { | |||
name = "Cast Iron", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_cast_iron.png", | |||
source = { | |||
"Iron Caster", | |||
}, | |||
production = { | |||
source1 = "Iron Caster", | |||
quantity1 = 8, | |||
recipe1 = { | |||
ingredient1 = "Iron Ore", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Charcoal", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 37, | |||
}, | |||
Tools = { | |||
name = "Tools", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_tools.png", | |||
source = { | |||
"Tool Maker", | |||
}, | |||
production = { | |||
source1 = "Tool Maker", | |||
quantity1 = 8, | |||
recipe1 = { | |||
ingredient1 = "Cast Iron", | |||
ingredient1_qty = 4, | |||
ingredient2 = "Stone", | |||
ingredient2_qty = 4, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 60, | |||
}, | |||
Steel = { | |||
name = "Steel", | |||
category = "Materials Resource", | |||
icon_file = "T_ICO_resource_Steel.png", | |||
source = { | |||
"Steel Foundry", | |||
}, | |||
production = { | |||
source1 = "Steel Foundry", | |||
quantity1 = 6, | |||
recipe1 = { | |||
ingredient1 = "Iron Ore", | |||
ingredient1_qty = 8, | |||
ingredient2 = "Charcoal", | |||
ingredient2_qty = 12, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 37, | |||
}, | |||
Eggs = { | |||
name = "Eggs", | |||
category = "Food Resource", | |||
icon_file = "T_ICO_resource_egg.png", | |||
source = { | |||
"Egg Thief", | |||
}, | |||
production = { | |||
source1 = "Egg Thief", | |||
quantity1 = 8, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 100, | |||
stack_value = 10, | |||
}, | |||
Grain = { | |||
name = "Grain", | |||
category = "Raid Resource", | |||
icon_file = "T_ICO_resource_Grain.png", | |||
source = {}, | |||
production = { | |||
source1 = "", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 500, | |||
stack_value = 87, | |||
}, | |||
Lens = { | |||
name = "Lens", | |||
category = "Raid Resource", | |||
icon_file = "T_ICO_resource_Lens.png", | |||
source = {}, | |||
production = { | |||
source1 = "", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 500, | |||
stack_value = 100, | |||
}, | |||
Silver = { | |||
name = "Silver", | |||
category = "Raid Resource", | |||
icon_file = "T_ICO_resource_silverBullion.png", | |||
source = {}, | |||
production = { | |||
source1 = "", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 250, | |||
stack_value = 93, | |||
}, | |||
["Whale Blubber"] = { | |||
name = "Whale Blubber", | |||
category = "Raid Resource", | |||
icon_file = "T_ICO_resource_WhaleBlubber.png", | |||
source = {}, | |||
production = { | |||
source1 = "", | |||
quantity1 = 0, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 500, | |||
stack_value = 87, | |||
}, | |||
["Whale Oil"] = { | |||
name = "Whale Oil", | |||
category = "Ships Resource", | |||
icon_file = "T_ICO_resource_WhaleOil.png", | |||
source = { | |||
"Blubber Pot", | |||
}, | |||
production = { | |||
source1 = "Blubber Pot", | |||
quantity1 = 14, | |||
recipe1 = { | |||
ingredient1 = "Whale Blubber", | |||
ingredient1_qty = 2, | |||
}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 18, | |||
}, | |||
Pearl = { | |||
name = "Pearl", | |||
category = "Equipment Resource", | |||
icon_file = "T_ICO_resource_Pearl.png", | |||
source = { | |||
"Pearl Diver", | |||
}, | |||
production = { | |||
source1 = "Pearl Diver", | |||
quantity1 = 12, | |||
recipe1 = {}, | |||
source2 = "", | |||
quantity2 = 0, | |||
recipe2 = {}, | |||
source3 = "", | |||
quantity3 = 0, | |||
recipe3 = {}, | |||
}, | |||
stack_size = 50, | |||
stack_value = 10, | |||
}, | |||
} | } | ||
Latest revision as of 19:38, 8 August 2026
This module provides data for all resources in the game to be used by other modules.
It provides information in a nested data structure in the lua format. You can change resource data and add new resources by copy-pasting existing resources 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:
- Module:ResourceTable
- Module:ResourceStack
- Module:ResourceTable
- Template:Resource
- Template:Resource infobox
- Template:Resource icon
- Template:Resource page
return {
Coins = {
name = "Coins",
category = "Resource",
icon_file = "T_ICO_resource_coin.png",
source = {},
production = {
source1 = "",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 0,
stack_value = 0,
},
Ammunition = {
name = "Ammunition",
category = "Ammunition",
icon_file = "T_ICO_Loaded_Gun.png",
source = {},
production = {
source1 = "Small Gun Tower",
quantity1 = 0.3,
recipe1 = {
ingredient1 = "Black Powder",
ingredient1_qty = 10,
},
source2 = "Medium Gun Tower",
quantity2 = 0.3,
recipe2 = {
ingredient1 = "Black Powder",
ingredient1_qty = 10,
ingredient2 = "Cannonball",
ingredient2_qty = 4,
},
source3 = "Large Gun Tower",
quantity3 = 0.3,
recipe3 = {
ingredient1 = "Black Powder",
ingredient1_qty = 10,
ingredient2 = "Cannonball",
ingredient2_qty = 4,
},
},
stack_size = 1,
stack_value = 0,
},
Planks = {
name = "Planks",
category = "Construction Resource",
icon_file = "T_ICO_resource_plank.png",
source = {
"Sawmill",
},
production = {
source1 = "Sawmill",
quantity1 = 10,
recipe1 = {
ingredient1 = "Hardwood",
ingredient1_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 18,
},
["Stone Blocks"] = {
name = "Stone Blocks",
category = "Construction Resource",
icon_file = "T_ICO_resource_stoneBlocks.png",
source = {
"Stonecutter",
},
production = {
source1 = "Stonecutter",
quantity1 = 5,
recipe1 = {
ingredient1 = "Stone",
ingredient1_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 15,
},
Rope = {
name = "Rope",
category = "Ships Resource",
icon_file = "T_ICO_resource_rope.png",
source = {
"Rope Maker",
},
production = {
source1 = "Rope Maker",
quantity1 = 6,
recipe1 = {
ingredient1 = "Fibre",
ingredient1_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 37,
},
Sails = {
name = "Sails",
category = "Ships Resource",
icon_file = "T_ICO_resource_Sails.png",
source = {
"Sail Maker",
},
production = {
source1 = "Sail Maker",
quantity1 = 4,
recipe1 = {
ingredient1 = "Fabric",
ingredient1_qty = 8,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 30,
},
Tabby = {
name = "Tabby",
category = "Construction Resource",
icon_file = "T_ICO_resource_tabbyConcrete.png",
source = {
"Tabby Cradle",
},
production = {
source1 = "Tabby Cradle",
quantity1 = 4,
recipe1 = {
ingredient1 = "Seashells",
ingredient1_qty = 4,
ingredient2 = "Lime",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 37,
},
Fittings = {
name = "Fittings",
category = "Ships Resource",
icon_file = "T_ICO_resource_Fittings.png",
source = {
"Hammermill",
},
production = {
source1 = "Hammermill",
quantity1 = 10,
recipe1 = {
ingredient1 = "Copper",
ingredient1_qty = 6,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 30,
},
Pitch = {
name = "Pitch",
category = "Ships Resource",
icon_file = "T_ICO_resource_Pitch.png",
source = {
"Tar Boiler",
},
production = {
source1 = "Tar Boiler",
quantity1 = 12,
recipe1 = {
ingredient1 = "Tar",
ingredient1_qty = 4,
ingredient2 = "Barrel",
ingredient2_qty = 8,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 25,
},
Figurehead = {
name = "Figurehead",
category = "Ships Resource",
icon_file = "T_ICO_Figurehead.png",
source = {
"Master Carver",
},
production = {
source1 = "Master Carver",
quantity1 = 2,
recipe1 = {
ingredient1 = "Hardwood",
ingredient1_qty = 8,
ingredient2 = "Colour Pigment",
ingredient2_qty = 8,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 25,
stack_value = 18,
},
["Naval Gun"] = {
name = "Naval Gun",
category = "Weapons Resource",
icon_file = "T_ICO_resource_navalCannon.png",
source = {
"Cannon Foundry",
},
production = {
source1 = "Cannon Foundry",
quantity1 = 4,
recipe1 = {
ingredient1 = "Cast Iron",
ingredient1_qty = 8,
ingredient2 = "Cannonball",
ingredient2_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 25,
stack_value = 75,
},
["Jolly Roger"] = {
name = "Jolly Roger",
category = "Ships Resource",
icon_file = "T_ICO_resource_JollyRoger.png",
source = {
"Flag Maker",
},
production = {
source1 = "Flag Maker",
quantity1 = 10,
recipe1 = {
ingredient1 = "Fabric",
ingredient1_qty = 6,
ingredient2 = "Colour Pigment",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 15,
},
["Steel Chain"] = {
name = "Steel Chain",
category = "Ships Resource",
icon_file = "T_ICO_resource_SteelChain.png",
source = {
"Chain Smith",
},
production = {
source1 = "Chain Smith",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 25,
stack_value = 30,
},
["Silver Lining"] = {
name = "Silver Lining",
category = "Ships Resource",
icon_file = "T_ICO_resource_SilverDeco.png",
source = {
"Silver Smith",
"Master Shipwright",
},
production = {
source1 = "Silver Smith",
quantity1 = 2,
recipe1 = {
ingredient1 = "Silver",
ingredient1_qty = 14,
ingredient2 = "Tools",
ingredient2_qty = 4,
},
source2 = "Master Shipwright",
quantity2 = 2,
recipe2 = {
ingredient1 = "Steel",
ingredient1_qty = 2,
ingredient2 = "Hardwood",
ingredient2_qty = 6,
},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 25,
stack_value = 75,
},
["Copper Lamp"] = {
name = "Copper Lamp",
category = "Ships Resource",
icon_file = "T_ICO_resource_CopperLamp.png",
source = {
"Lamp Maker",
"Copper Smith",
},
production = {
source1 = "Lamp Maker",
quantity1 = 5,
recipe1 = {
ingredient1 = "Copper",
ingredient1_qty = 8,
ingredient2 = "Whale Oil",
ingredient2_qty = 10,
},
source2 = "Copper Smith",
quantity2 = 5,
recipe2 = {
ingredient1 = "Copper",
ingredient1_qty = 8,
ingredient2 = "Hardwood",
ingredient2_qty = 8,
},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 30,
},
Stew = {
name = "Stew",
category = "Food Resource",
icon_file = "T_ICO_resource_DefaultStew.png",
source = {
"Campfire",
"Buccaneer Grill",
"Stew Kitchen",
},
production = {
source1 = "Campfire",
quantity1 = 16,
recipe1 = {},
source2 = "Buccaneer Grill",
quantity2 = 35,
recipe2 = {
ingredient1 = "Pig",
ingredient1_qty = 2,
},
source3 = "Stew Kitchen",
quantity3 = 55,
recipe3 = {
ingredient1 = "Fish",
ingredient1_qty = 8,
ingredient2 = "Fresh Water",
ingredient2_qty = 4,
},
},
stack_size = 500,
stack_value = 12,
},
Booze = {
name = "Booze",
category = "Food Resource",
icon_file = "T_ICO_resource_DefaultAle.png",
source = {
"Moonshine Still",
"Cider Press",
"Brewery",
},
production = {
source1 = "Moonshine Still",
quantity1 = 12,
recipe1 = {},
source2 = "Cider Press",
quantity2 = 24,
recipe2 = {
ingredient1 = "Pineapple",
ingredient1_qty = 8,
},
source3 = "Brewery",
quantity3 = 36,
recipe3 = {
ingredient1 = "Eggs",
ingredient1_qty = 4,
ingredient2 = "Fresh Water",
ingredient2_qty = 4,
},
},
stack_size = 500,
stack_value = 12,
},
["Cassava Bread"] = {
name = "Cassava Bread",
category = "Food Resource",
icon_file = "T_ICO_resource_CassavaBread.png",
source = {
"Cassava Oven",
},
production = {
source1 = "Cassava Oven",
quantity1 = 20,
recipe1 = {
ingredient1 = "Cassava Roots",
ingredient1_qty = 4,
ingredient2 = "Salt",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 40,
},
Rum = {
name = "Rum",
category = "Drink Resource",
icon_file = "T_ICO_resource_Rum.png",
source = {
"Distillery",
},
production = {
source1 = "Distillery",
quantity1 = 20,
recipe1 = {
ingredient1 = "Barrel",
ingredient1_qty = 4,
ingredient2 = "Sugar Cane",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 150,
stack_value = 22,
},
["Turtle Soup"] = {
name = "Turtle Soup",
category = "Food Resource",
icon_file = "T_ICO_resource_turtleSoup.png",
source = {
"Soup Kitchen",
},
production = {
source1 = "Soup Kitchen",
quantity1 = 15,
recipe1 = {
ingredient1 = "Turtles",
ingredient1_qty = 4,
ingredient2 = "Fresh Water",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 150,
stack_value = 15,
},
Medicine = {
name = "Medicine",
category = "Equipment Resource",
icon_file = "T_ICO_resource_medicine.png",
source = {
"Apothecary",
},
production = {
source1 = "Apothecary",
quantity1 = 15,
recipe1 = {
ingredient1 = "Herbs",
ingredient1_qty = 8,
ingredient2 = "Fresh Water",
ingredient2_qty = 6,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 37,
},
Slops = {
name = "Slops",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Slops.png",
source = {
"Slop Shop",
},
production = {
source1 = "Slop Shop",
quantity1 = 15,
recipe1 = {
ingredient1 = "Fabric",
ingredient1_qty = 2,
ingredient2 = "Leather",
ingredient2_qty = 12,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 25,
},
Boots = {
name = "Boots",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Boots.png",
source = {
"Cobbler",
},
production = {
source1 = "Cobbler",
quantity1 = 20,
recipe1 = {
ingredient1 = "Leather",
ingredient1_qty = 6,
ingredient2 = "Wooden Awl",
ingredient2_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 37,
},
["Roast Bird"] = {
name = "Roast Bird",
category = "Food Resource",
icon_file = "T_ICO_resource_RoastBird.png",
source = {
"Rotisserie",
},
production = {
source1 = "Rotisserie",
quantity1 = 30,
recipe1 = {
ingredient1 = "Birds",
ingredient1_qty = 2,
ingredient2 = "Herbs",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 300,
stack_value = 48,
},
Tobacco = {
name = "Tobacco",
category = "Raid Resource",
icon_file = "T_ICO_resource_tabacco.png",
source = {},
production = {
source1 = "",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 1000,
stack_value = 200,
},
Wine = {
name = "Wine",
category = "Raid Resource",
icon_file = "T_ICO_resource_wine.png",
source = {},
production = {
source1 = "",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 1000,
stack_value = 200,
},
Eyepatch = {
name = "Eyepatch",
category = "Equipment Resource",
icon_file = "T_ICO_resource_EyePatch.png",
source = {
"Eyepatch Maker",
},
production = {
source1 = "Eyepatch Maker",
quantity1 = 15,
recipe1 = {
ingredient1 = "Leather",
ingredient1_qty = 2,
ingredient2 = "Fibre",
ingredient2_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 200,
stack_value = 20,
},
["Tattoo Ink"] = {
name = "Tattoo Ink",
category = "Equipment Resource",
icon_file = "T_ICO_resource_TattooInk.png",
source = {
"Ink Maker",
},
production = {
source1 = "Ink Maker",
quantity1 = 15,
recipe1 = {
ingredient1 = "Colour Pigment",
ingredient1_qty = 2,
ingredient2 = "Fresh Water",
ingredient2_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 300,
stack_value = 30,
},
["Hardtack"] = {
name = "Hardtack",
category = "Food Resource",
icon_file = "T_ICO_resource_HardTack.png",
source = {
"Tack Oven",
"Provisioner",
},
production = {
source1 = "Tack Oven",
quantity1 = 10,
recipe1 = {
ingredient1 = "Grain",
ingredient1_qty = 12,
ingredient2 = "Fresh Water",
ingredient2_qty = 2,
},
source2 = "Provisioner",
quantity2 = 10,
recipe2 = {
ingredient1 = "Cassava Bread",
ingredient1_qty = 4,
ingredient2 = "Herbs",
ingredient2_qty = 4,
},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 50,
},
Spyglass = {
name = "Spyglass",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Telescope.png",
source = {
"Spyglass Maker",
"Tinkerer",
},
production = {
source1 = "Spyglass Maker",
quantity1 = 10,
recipe1 = {
ingredient1 = "Lens",
ingredient1_qty = 8,
ingredient2 = "Leather",
ingredient2_qty = 4,
},
source2 = "Tinkerer",
quantity2 = 10,
recipe2 = {
ingredient1 = "Tools",
ingredient1_qty = 2,
ingredient2 = "Lime",
ingredient2_qty = 2,
},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 50,
},
Prosthesis = {
name = "Prosthesis",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Prosthetics.png",
source = {
"Limb Maker",
},
production = {
source1 = "Limb Maker",
quantity1 = 10,
recipe1 = {
ingredient1 = "Hardwood",
ingredient1_qty = 4,
ingredient2 = "Steel",
ingredient2_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 50,
},
Sabres = {
name = "Sabres",
category = "Equipment Resource",
icon_file = "T_ICO_resource_cutlass.png",
source = {
"Weaponsmith",
},
production = {
source1 = "Weaponsmith",
quantity1 = 10,
recipe1 = {
ingredient1 = "Steel",
ingredient1_qty = 4,
ingredient2 = "Stone",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 50,
},
["Fancy Clothing"] = {
name = "Fancy Clothing",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Garments.png",
source = {
"Master Tailor",
},
production = {
source1 = "Master Tailor",
quantity1 = 5,
recipe1 = {
ingredient1 = "Pearl",
ingredient1_qty = 2,
ingredient2 = "Fabric",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 50,
},
Jewellery = {
name = "Jewellery",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Jewelry.png",
source = {
"Jeweller",
},
production = {
source1 = "Jeweller",
quantity1 = 5,
recipe1 = {
ingredient1 = "Pearl",
ingredient1_qty = 4,
ingredient2 = "Tools",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 50,
},
Shot = {
name = "Shot",
category = "Weapons Resource",
icon_file = "T_ICO_resource_Shot.png",
source = {
"Shot Tower",
},
production = {
source1 = "Shot Tower",
quantity1 = 20,
recipe1 = {
ingredient1 = "Lead",
ingredient1_qty = 2,
ingredient2 = "Copper",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 0,
stack_value = 0,
},
Pistols = {
name = "Pistols",
category = "Weapons Resource",
icon_file = "T_ICO_resource_Handgun04.png",
source = {
"Pistol Maker",
},
production = {
source1 = "Pistol Maker",
quantity1 = 5,
recipe1 = {
ingredient1 = "Steel",
ingredient1_qty = 2,
ingredient2 = "Shot",
ingredient2_qty = 10,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 50,
},
Hardwood = {
name = "Hardwood",
category = "Materials Resource",
icon_file = "T_ICO_resource_Hardwood.png",
source = {
"Woodcutter",
},
production = {
source1 = "Woodcutter",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 12,
},
Stone = {
name = "Stone",
category = "Materials Resource",
icon_file = "T_ICO_resource_Stone.png",
source = {
"Quarry",
},
production = {
source1 = "Quarry",
quantity1 = 6,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Guano = {
name = "Guano",
category = "Weapons Resource",
icon_file = "T_ICO_resource_guano.png",
source = {
"Guano Gatherer",
},
production = {
source1 = "Guano Gatherer",
quantity1 = 12,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Charcoal = {
name = "Charcoal",
category = "Materials Resource",
icon_file = "T_ICO_Charburner.png",
source = {
"Charburner",
},
production = {
source1 = "Charburner",
quantity1 = 16,
recipe1 = {
ingredient1 = "Hardwood",
ingredient1_qty = 6,
ingredient2 = "Stone",
ingredient2_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 35,
},
["Black Powder"] = {
name = "Black Powder",
category = "Weapons Resource",
icon_file = "T_ICO_resource_blackPowder.png",
source = {
"Powdermill",
},
production = {
source1 = "Powdermill",
quantity1 = 10,
recipe1 = {
ingredient1 = "Guano",
ingredient1_qty = 6,
ingredient2 = "Charcoal",
ingredient2_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 25,
},
Fibre = {
name = "Fibre",
category = "Materials Resource",
icon_file = "T_ICO_Fibres.png",
source = {
"Leafcutter",
},
production = {
source1 = "Leafcutter",
quantity1 = 12,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Pig = {
name = "Pig",
category = "Food Resource",
icon_file = "T_ICO_resource_pig.png",
source = {
"Pig Herder",
},
production = {
source1 = "Pig Herder",
quantity1 = 4,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 5,
},
Fabric = {
name = "Fabric",
category = "Materials Resource",
icon_file = "T_ICO_resource_Canvas2.png",
source = {
"Weaver",
},
production = {
source1 = "Weaver",
quantity1 = 8,
recipe1 = {
ingredient1 = "Wooden Awl",
ingredient1_qty = 6,
ingredient2 = "Fibre",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 28,
},
["Wooden Awl"] = {
name = "Wooden Awl",
category = "Equipment Resource",
icon_file = "T_ICO_resource_WoodenAwl.png",
source = {
"Wood Workshop",
},
production = {
source1 = "Hardwood Workshop",
quantity1 = 6,
recipe1 = {
ingredient1 = "Hardwood",
ingredient1_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 12,
},
["Cassava Roots"] = {
name = "Cassava Roots",
category = "Food Resource",
icon_file = "T_ICO_resource_cassavaRoot.png",
source = {
"Cassava Picker",
},
production = {
source1 = "Casssava Picker",
quantity1 = 4,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 12,
},
Salt = {
name = "Salt",
category = "Food Resource",
icon_file = "T_ICO_resource_salt.png",
source = {
"Saltern",
},
production = {
source1 = "Saltern",
quantity1 = 12,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
["Sugar Cane"] = {
name = "Sugar Cane",
category = "Drink Resource",
icon_file = "T_ICO_resource_sugarCane.png",
source = {
"Sugar Cane Farm",
},
production = {
source1 = "Sugar Cane Farm",
quantity1 = 4,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 25,
},
Barrel = {
name = "Barrel",
category = "Drink Resource",
icon_file = "T_ICO_resource_Barrel.png",
source = {
"Cooper",
},
production = {
source1 = "Cooper",
quantity1 = 12,
recipe1 = {
ingredient1 = "Hardwood",
ingredient1_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 18,
},
Pineapple = {
name = "Pineapple",
category = "Drink Resource",
icon_file = "T_ICO_resource_pineapple.png",
source = {
"Pineapple Grove",
},
production = {
source1 = "Pineapple Grove",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
["Fresh Water"] = {
name = "Fresh Water",
category = "Drink Resource",
icon_file = "T_ICO_resource_FreshWater.png",
source = {
"Cistern",
},
production = {
source1 = "Cistern",
quantity1 = 12,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 25,
},
Turtles = {
name = "Turtles",
category = "Drink Resource",
icon_file = "lT_ICO_iresource_turtule.png",
source = {
"Turtle Catcher",
},
production = {
source1 = "Turtle Catcher",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Herbs = {
name = "Herbs",
category = "Food Resource",
icon_file = "T_ICO_resource_herbs.png",
source = {
"Herbalist",
},
production = {
source1 = "Herbalist",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 500,
stack_value = 25,
},
Leather = {
name = "Leather",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Leather.png",
source = {
"Tanner",
},
production = {
source1 = "Tanner",
quantity1 = 12,
recipe1 = {
ingredient1 = "Pig",
ingredient1_qty = 2,
ingredient2 = "Salt",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 25,
},
Lime = {
name = "Lime",
category = "Materials Resource",
icon_file = "T_ICO_resource_limestone.png",
source = {
"Lime Kiln",
},
production = {
source1 = "Lime Kiln",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Seashells = {
name = "Seashells",
category = "Materials Resource",
icon_file = "lT_ICO_iresource_seashell.png",
source = {
"Shell Farm",
},
production = {
source1 = "Shell Farm",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Birds = {
name = "Birds",
category = "Food Resource",
icon_file = "lT_ICO_iresource_bird.png",
source = {
"Bird Catcher",
},
production = {
source1 = "Bird Catcher",
quantity1 = 6,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
["Copper Ore"] = {
name = "Copper Ore",
category = "Materials Resource",
icon_file = "T_ICO_resource_copper.png",
source = {
"Copper Mine",
},
production = {
source1 = "Copper Mine",
quantity1 = 12,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Copper = {
name = "Copper",
category = "Materials Resource",
icon_file = "T_ICO_resource_copperBars.png",
source = {
"Bloomery",
},
production = {
source1 = "Bloomery",
quantity1 = 12,
recipe1 = {
ingredient1 = "Copper Ore",
ingredient1_qty = 4,
ingredient2 = "Charcoal",
ingredient2_qty = 8,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 18,
},
Tar = {
name = "Tar",
category = "Materials Resource",
icon_file = "T_ICO_resource_Tar.png",
source = {
"Tar Kiln",
},
production = {
source1 = "Tar Kiln",
quantity1 = 8,
recipe1 = {
ingredient1 = "Hardwood",
ingredient1_qty = 2,
ingredient2 = "Charcoal",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 93,
},
Cochineal = {
name = "Cochineal",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Cochineal.png",
source = {
"Cochineal Harvester",
},
production = {
source1 = "Cochineal Harvester",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 25,
},
["Colour Pigment"] = {
name = "Colour Pigment",
category = "Equipment Resource",
icon_file = "T_ICO_resource_ColorPigment.png",
source = {
"Pigment Maker",
},
production = {
source1 = "Pigment Maker",
quantity1 = 8,
recipe1 = {
ingredient1 = "Cochineal",
ingredient1_qty = 4,
ingredient2 = "Lime",
ingredient2_qty = 2,},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 14,
},
Fish = {
name = "Fish",
category = "Food Resource",
icon_file = "T_ICO_resource_Fish.png",
source = {
"Fishing Hut",
},
production = {
source1 = "Fishing Hut",
quantity1 = 16,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
["Lead Ore"] = {
name = "Lead Ore",
category = "Weapons Resource",
icon_file = "T_ICO_resource_LeadOre.png",
source = {
"Lead Mine",
},
production = {
source1 = "Lead Mine",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Lead = {
name = "Lead",
category = "Weapons Resource",
icon_file = "T_ICO_resource_Lead.png",
source = {
"Lead Smelter",
},
production = {
source1 = "Lead Smelter",
quantity1 = 4,
recipe1 = {
ingredient1 = "Lead Ore",
ingredient1_qty = 4,
ingredient2 = "Charcoal",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 18,
},
Cannonball = {
name = "Cannonball",
category = "Weapons Resource",
icon_file = "T_ICO_resource_CannonballMetall.png",
source = {
"Lead Workshop",
},
production = {
source1 = "Lead Workshop",
quantity1 = 12,
recipe1 = {
ingredient1 = "Lead",
ingredient1_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 40,
},
["Iron Ore"] = {
name = "Iron Ore",
category = "Materials Resource",
icon_file = "T_ICO_resource_ironOre.png",
source = {
"Iron Mine",
},
production = {
source1 = "Iron Mine",
quantity1 = 12,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
["Cast Iron"] = {
name = "Cast Iron",
category = "Materials Resource",
icon_file = "T_ICO_cast_iron.png",
source = {
"Iron Caster",
},
production = {
source1 = "Iron Caster",
quantity1 = 8,
recipe1 = {
ingredient1 = "Iron Ore",
ingredient1_qty = 4,
ingredient2 = "Charcoal",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 37,
},
Tools = {
name = "Tools",
category = "Ships Resource",
icon_file = "T_ICO_resource_tools.png",
source = {
"Tool Maker",
},
production = {
source1 = "Tool Maker",
quantity1 = 8,
recipe1 = {
ingredient1 = "Cast Iron",
ingredient1_qty = 4,
ingredient2 = "Stone",
ingredient2_qty = 4,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 60,
},
Steel = {
name = "Steel",
category = "Materials Resource",
icon_file = "T_ICO_resource_Steel.png",
source = {
"Steel Foundry",
},
production = {
source1 = "Steel Foundry",
quantity1 = 6,
recipe1 = {
ingredient1 = "Iron Ore",
ingredient1_qty = 8,
ingredient2 = "Charcoal",
ingredient2_qty = 12,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 37,
},
Eggs = {
name = "Eggs",
category = "Food Resource",
icon_file = "T_ICO_resource_egg.png",
source = {
"Egg Thief",
},
production = {
source1 = "Egg Thief",
quantity1 = 8,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 100,
stack_value = 10,
},
Grain = {
name = "Grain",
category = "Raid Resource",
icon_file = "T_ICO_resource_Grain.png",
source = {},
production = {
source1 = "",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 500,
stack_value = 87,
},
Lens = {
name = "Lens",
category = "Raid Resource",
icon_file = "T_ICO_resource_Lens.png",
source = {},
production = {
source1 = "",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 500,
stack_value = 100,
},
Silver = {
name = "Silver",
category = "Raid Resource",
icon_file = "T_ICO_resource_silverBullion.png",
source = {},
production = {
source1 = "",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 250,
stack_value = 93,
},
["Whale Blubber"] = {
name = "Whale Blubber",
category = "Raid Resource",
icon_file = "T_ICO_resource_WhaleBlubber.png",
source = {},
production = {
source1 = "",
quantity1 = 0,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 500,
stack_value = 87,
},
["Whale Oil"] = {
name = "Whale Oil",
category = "Ships Resource",
icon_file = "T_ICO_resource_WhaleOil.png",
source = {
"Blubber Pot",
},
production = {
source1 = "Blubber Pot",
quantity1 = 14,
recipe1 = {
ingredient1 = "Whale Blubber",
ingredient1_qty = 2,
},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 18,
},
Pearl = {
name = "Pearl",
category = "Equipment Resource",
icon_file = "T_ICO_resource_Pearl.png",
source = {
"Pearl Diver",
},
production = {
source1 = "Pearl Diver",
quantity1 = 12,
recipe1 = {},
source2 = "",
quantity2 = 0,
recipe2 = {},
source3 = "",
quantity3 = 0,
recipe3 = {},
},
stack_size = 50,
stack_value = 10,
},
}


