Module:Recipe/SN: Difference between revisions
SlyAceZeta (talk | contribs) (adding Floater, Reefback, Reefback Egg, Gas Torpedo, Hatching Enzymes, and Vortex Torpedo; fixing Jaffa Cup Seed name; adding Bioreactor energy for Table Coral Sample) |
SlyAceZeta (talk | contribs) (adding special giveaway items) |
||
Line 2,448: | Line 2,448: | ||
recipe = { |
recipe = { |
||
{ "titanium", 2 } |
{ "titanium", 2 } |
||
} |
|||
}, |
|||
-- Special items |
|||
["marki2"] = { |
|||
name = "An Unusual Doll", |
|||
machine = "builder", |
|||
image = "Markiplier Doll.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["marki1"] = { |
|||
name = "An Unusual Doll 2", |
|||
machine = "builder", |
|||
image = "Marki1.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["jacksepticeye"] = { |
|||
name = "Jack's Septic Tank", |
|||
machine = "builder", |
|||
image = "Jack's Septic Tank.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["eatmydiction"] = { |
|||
name = "Marla", |
|||
machine = "builder", |
|||
image = "Eatmydiction.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["bikemanhullplate"] = { |
|||
name = "Bikeman Hull Plate", |
|||
machine = "builder", |
|||
image = "Bikeman Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["devtestitem"] = { |
|||
name = "Dev Test Item", |
|||
machine = "builder", |
|||
image = "Dev Test Item Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["dioramahullplate"] = { |
|||
name = "Diorama Hull Plate", |
|||
machine = "builder", |
|||
image = "Diorama Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["eatmydictionhullplate"] = { |
|||
name = "Eat My Diction Hull Plate", |
|||
machine = "builder", |
|||
image = "Eat My Diction Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["gilathisshullplate"] = { |
|||
name = "Gilathiss Hull Plate", |
|||
machine = "builder", |
|||
image = "Gilathiss Hull Plate.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["igphullplate"] = { |
|||
name = "Indie Game Promoter Hull Plate", |
|||
machine = "builder", |
|||
image = "Indie Game Promoter Hull Plate.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["jacksepticeyehullplate"] = { |
|||
name = "JackSepticEye Hull Plate", |
|||
machine = "builder", |
|||
image = "JackSepticEye Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["lordminionhullplate"] = { |
|||
name = "LordMinion Hull Plate", |
|||
machine = "builder", |
|||
image = "Lordminion Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["markiplierhullplate"] = { |
|||
name = "Markiplier Hull Plate", |
|||
machine = "builder", |
|||
image = "Markiplier Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["muyskermhullplate"] = { |
|||
name = "Muyskerm Hull Plate", |
|||
machine = "builder", |
|||
image = "Muyskerm Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
|||
}, |
|||
["specialhullplate"] = { |
|||
name = "Special Hull Plate", |
|||
machine = "builder", |
|||
image = "Special Hull Plate Blueprint.png", |
|||
recipe = { |
|||
{ "titanium", 1 }, |
|||
{ "glass", 1 } |
|||
} |
} |
||
} |
} |
Revision as of 08:40, 2 July 2022
This module contains all recipe information for every item in Subnautica. This data is used in Module:Recipe to output recipes on pages.
Each in-game item is represented by an Lua table object. The syntax for each object is below. All parameters are optional except name
.
["spawnID"] = {
name = "Item Name", -- the in-game name of the item
energy = #, -- the amount of energy the item adds to the Bioreactor
nuclear = #, -- the amount of energy the item adds to the Nuclear Reactor
icon = {
size = "1x1", -- "1x1", "1x2", "2x2", "3x3", "3x2", "2x3", "4x4"
bg = "default", -- "default", "aquatic plant", "land plant", "prawn arm"
file = "Item Name" -- if the transparent icon is not at "Item Name Icon.png"
},
image = "File Name.png", -- the direct file name if a transparent icon does not exist
machine = "spawnID", -- the machine the item is crafted or obtained through
recipe = {
{ "spawnID", # },
{ "spawnID", # }
},
original = "spawnID", -- if the item is made as part of a different item's recipe
additional = { -- if the item's recipe also makes other items
{ "spawnID", # },
{ "spawnID", # }
},
quantity = # -- if more than one of the item is made at the same time
},
return {
-- Energy
["energy"] = {
name = "Energy",
image = "Energy.png"
},
-- Materials
["acidmushroom"] = {
name = "Acid Mushroom",
energy = 210,
icon = {
bg = "aquatic plant"
}
},
["acidmushroomspore"] = {
name = "Acid Mushroom Spore",
energy = 21,
icon = {
bg = "aquatic plant"
}
},
["aluminumoxide"] = {
name = "Ruby"
},
["bladderfish"] = {
name = "Bladderfish",
energy = 210,
},
["bloodoil"] = {
name = "Blood Oil",
energy = 420,
icon = {
size = "2x2",
bg = "aquatic plant"
}
},
["bluepalmseed"] = {
name = "Blue Palm Seed",
energy = 70,
icon = {
size = "2x2",
bg = "aquatic plant"
}
},
["boomerang"] = {
name = "Boomerang",
energy = 280
},
["boneshark"] = {
name = "Boneshark",
machine = "basewaterpark",
energy = 630,
recipe = {
{ "bonesharkegg", 1 }
},
icon = {
size = "3x3"
}
},
["bonesharkegg"] = {
name = "Boneshark Egg",
energy = 210,
icon = {
size = "2x2"
}
},
["bulbotreepiece"] = {
name = "Bulbo Tree Sample",
energy = 420,
image = "Bulbo Tree Sample.png"
},
["copper"] = {
name = "Copper Ore"
},
["coralchunk"] = {
name = "Coral Tube Sample",
energy = 70
},
["crabsnake"] = {
name = "Crabsnake",
energy = 700,
image = "Crabsnake.png",
machine = "basewaterpark",
recipe = {
{ "crabsnakeegg", 1 }
}
},
["crabsnakeegg"] = {
name = "Crabsnake Egg",
energy = 231,
image = "Crabsnake Egg.png"
},
["crabsquid"] = {
name = "Crabsquid",
energy = 770,
image = "Crabsquid.png",
machine = "basewaterpark",
recipe = {
{ "crabsquidegg", 1 }
}
},
["crabsquidegg"] = {
name = "Crabsquid Egg",
energy = 259,
image = "Crabsquid Egg.png"
},
["crash"] = {
name = "Crashfish",
energy = 560,
machine = "basewaterpark",
recipe = {
{ "crashegg", 1 }
},
icon = {
size = "2x2"
}
},
["crashegg"] = {
name = "Crashfish Egg",
energy = 189
},
["crashpowder"] = {
name = "Cave Sulfur"
},
["creepvinepiece"] = {
name = "Creepvine Sample",
energy = 210,
image = "Creepvine Sample.png"
},
["creepvineseedcluster"] = {
name = "Creepvine Seed Cluster",
energy = 70,
image = "Creepvine Seed Cluster.png"
},
["cutefish"] = {
name = "Cuddlefish",
machine = "basewaterpark",
recipe = {
{ "cutefishegg", 1 }
},
icon = {
size = "2x2"
}
},
["cutefishegg"] = {
name = "Cuddlefish Egg",
energy = 210,
image = "Cuddlefish Egg.png"
},
["diamond"] = {
name = "Diamond"
},
["eyesplantseed"] = {
name = "Eye Stalk Seed",
energy = 70,
image = "Eye Stalk Seed.png"
},
["eyeye"] = {
name = "Eyeye",
energy = 420,
image = "Eyeye.png"
},
["fernpalmseed"] = {
name = "Fern Palm Seed",
energy = 70,
image = "Fern Palm Seed.png"
},
["floater"] = {
name = "Floater",
energy = 50,
image = "Floater.png"
},
["gabesfeatherseed"] = {
name = "Gabe's Feather Seed",
energy = 70,
image = "Gabe's Feather Seed.png"
},
["garryfish"] = {
name = "Garryfish",
energy = 420,
image = "Garryfish.png"
},
["gasopod"] = {
name = "Gasopod",
energy = 700,
image = "Gasopod.png",
machine = "basewaterpark",
recipe = {
{ "gasopodegg", 1 }
}
},
["gasopodegg"] = {
name = "Gasopod Egg",
energy = 231,
image = "Gasopod Egg.png"
},
["gaspod"] = {
name = "Gas Pod",
image = "Gas Pod.png"
},
["gold"] = {
name = "Gold"
},
["hangingfruit"] = {
name = "Lantern Fruit",
energy = 210,
icon = {
size = "2x2",
bg = "land plant"
}
},
["holefish"] = {
name = "Holefish",
energy = 280,
image = "Holefish.png"
},
["hoopfish"] = {
name = "Hoopfish",
energy = 210
},
["hoverfish"] = {
name = "Hoverfish",
energy = 350,
image = "Hoverfish.png"
},
["jellyplant"] = {
name = "Gel Sack",
energy = 245,
icon = {
bg = "aquatic plant"
}
},
["jellyplantseed"] = {
name = "Gel Sack Spores",
energy = 7,
icon = {
bg = "aquatic plant"
}
},
["jellyray"] = {
name = "Jellyray",
energy = 350,
image = "Jellyray.png",
machine = "basewaterpark",
recipe = {
{ "jellyrayegg", 1 }
}
},
["jellyrayegg"] = {
name = "Jellyray Egg",
energy = 119,
image = "Jellyray Egg.png"
},
["jeweleddiskpiece"] = {
name = "Table Coral Sample",
energy = 70
},
["jumper"] = {
name = "Shuttlebug",
energy = 280,
image = "Shuttlebug.png",
machine = "basewaterpark",
recipe = {
{ "jumperegg", 1 }
}
},
["jumperegg"] = {
name = "Shuttlebug Egg",
energy = 105,
image = "Shuttlebug Egg.png"
},
["kooshchunk"] = {
name = "Bulb Bush Sample",
energy = 420,
image = "Bulb Bush Sample.png"
},
["kyanite"] = {
name = "Kyanite"
},
["lavaboomerang"] = {
name = "Magmarang",
energy = 280,
image = "Magmarang.png"
},
["lavaeyeye"] = {
name = "Red Eyeye",
energy = 420,
image = "Red Eyeye.png"
},
["lavalizard"] = {
name = "Lava Lizard",
energy = 560,
image = "Lava Lizard.png",
machine = "basewaterpark",
recipe = {
{ "lavalizardegg", 1 }
}
},
["lavalizardegg"] = {
name = "Lava Lizard Egg",
energy = 189,
image = "Lava Lizard Egg.png"
},
["lead"] = {
name = "Lead"
},
["lithium"] = {
name = "Lithium"
},
["magnetite"] = {
name = "Magnetite"
},
["melon"] = {
name = "Marblemelon",
energy = 420,
icon = {
size = "2x2",
bg = "land plant"
}
},
["melonseed"] = {
name = "Marblemelon Seed",
energy = 70,
icon = {
bg = "landplant"
}
},
["membraintreeseed"] = {
name = "Membrain Tree Seed",
energy = 70,
image = "Membrain Tree Seed.png"
},
["mesmer"] = {
name = "Mesmer",
energy = 560,
image = "Mesmer.png",
machine = "basewaterpark",
recipe = {
{ "mesmeregg", 1 }
}
},
["mesmeregg"] = {
name = "Mesmer Egg",
energy = 175,
image = "Mesmer Egg.png"
},
["nickel"] = {
name = "Nickel Ore"
},
["oculus"] = {
name = "Oculus",
energy = 630,
image = "Oculus.png"
},
["orangemushroomspore"] = {
name = "Jaffa Cup Seed",
energy = 140,
image = "Jaffa Cup Seed.png"
},
["orangepetalsplantseed"] = {
name = "Grub Basket Seed",
energy = 105,
image = "Grub Basket Seed.png"
},
["peeper"] = {
name = "Peeper",
energy = 420,
image = "Peeper.png"
},
["pinkflowerseed"] = {
name = "Voxel Shrub Seed",
energy = 28,
image = "Voxel Shrub Seed.png"
},
["pinkmushroom"] = {
name = "Pink Cap",
energy = 105,
image = "Pink Cap.png"
},
["pinkmushroomspore"] = {
name = "Pink Cap Spore",
energy = 14,
image = "Pink Cap Spore.png"
},
["precursorioncrystal"] = {
name = "Ion Cube"
},
["purplebraincoralsample"] = {
name = "Brain Coral Sample",
energy = 70,
image = "Purple Brain Coral Sample.png"
},
["purplebranchesseed"] = {
name = "Cave Bush Seed",
energy = 70,
icon = {
size = "2x2",
bg = "aquatic plant"
}
},
["purplefanseed"] = {
name = "Veined Nettle Seed",
energy = 21,
image = "Veined Nettle Seed.png"
},
["purplerattle"] = {
name = "Speckled Rattler",
energy = 140,
image = "Speckled Rattler.png"
},
["purplerattlespore"] = {
name = "Speckled Rattler Spore",
energy = 14,
image = "Speckled Rattler Spore.png"
},
["purplestalkseed"] = {
name = "Violet Beau Seed",
energy = 70,
icon = {
size = "2x2",
bg = "aquatic plant"
}
},
["purpletentacleseed"] = {
name = "Writhing Weed Seed",
energy = 140,
image = "Writhing Weed Seed.png"
},
["purplevaseplantseed"] = {
name = "Ming Plant Seed",
energy = 140,
image = "Ming Plant Seed.png"
},
["purplevegetable"] = {
name = "Chinese Potato",
energy = 140,
icon = {
size = "2x2",
bg = "land plant"
}
},
["quartz"] = {
name = "Quartz"
},
["rabbitray"] = {
name = "Rabbit Ray",
energy = 420,
image = "Rabbit Ray.png",
machine = "basewaterpark",
recipe = {
{ "rabbitrayegg", 1 }
}
},
["rabbitrayegg"] = {
name = "Rabbit Ray Egg",
energy = 140,
image = "Rabbit Ray Egg.png"
},
["redbasketplantseed"] = {
name = "Rouge Cradle Seed",
energy = 70,
image = "Rouge Cradle Seed.png"
},
["redbushseed"] = {
name = "Redwort Seed",
energy = 70,
icon = {
size = "2x2",
bg = "aquatic plant"
}
},
["redconeplantseed"] = {
name = "Regress Shell Seed",
energy = 70,
image = "Regress Shell Seed.png"
},
["redgreententacleseed"] = {
name = "Ghost Weed Seed",
energy = 70,
image = "Ghost Weed Seed.png"
},
["redrollplantseed"] = {
name = "Furled Papyrus Seed",
energy = 70,
image = "Furled Papyrus Seed.png"
},
["reefback"] = {
name = "Reefback",
energy = 840,
image = "Reefback.png"
},
["reefbackegg"] = {
name = "Reefback Egg",
energy = 280,
image = "Reefback Egg.png"
},
["reginald"] = {
name = "Reginald",
energy = 490,
image = "Reginald.png"
},
["sandshark"] = {
name = "Sand Shark",
energy = 630,
image = "Sand Shark.png",
machine = "basewaterpark",
recipe = {
{ "sandsharkegg", 1 }
}
},
["sandsharkegg"] = {
name = "Sand Shark Egg",
energy = 210,
image = "Sand Shark Egg.png"
},
["scrapmetal"] = {
name = "Metal Salvage",
icon = {
size = "2x2"
}
},
["seacrownseed"] = {
name = "Sea Crown Seed",
energy = 70,
image = "Sea Crown Seed.png"
},
["seatreaderpoop"] = {
name = "Alien Feces",
energy = 300,
image = "Sea Treader Feces.png"
},
["shellgrassseed"] = {
name = "Spiked Horn Grass Seed",
image = "Spiked Horn Grass Seed.png"
},
["shocker"] = {
name = "Ampeel",
energy = 770,
image = "Shocker.png",
machine = "basewaterpark",
recipe = {
{ "shockeregg", 1 }
}
},
["shockeregg"] = {
name = "Ampeel Egg",
energy = 259,
image = "Shocker Egg.png"
},
["silver"] = {
name = "Silver Ore"
},
["smallfanseed"] = {
name = "Pygmy Fan Seed",
energy = 28,
image = "Pygmy Fan Seed.png"
},
["smallmelon"] = {
name = "Small Marblemelon",
energy = 280,
icon = {
bg = "land plant"
}
},
["snakemushroomspore"] = {
name = "Jellyshroom Spore",
energy = 140,
image = "Jellyshroom Spore.png"
},
["spadefish"] = {
name = "Spadefish",
energy = 420,
image = "Spadefish.png",
machine = "basewaterpark",
recipe = {
{ "spadefishegg", 1 }
}
},
["spadefishegg"] = {
name = "Spadefish Egg",
energy = 140,
image = "Spadefish Egg.png"
},
["spikeplantseed"] = {
name = "Tiger Plant Seed",
energy = 70,
image = "Tiger Plant Seed.png"
},
["spinefish"] = {
name = "Spinefish",
energy = 210
},
["spottedleavesplantseed"] = {
name = "Spotted Dockleaf Seed",
energy = 70,
icon = {
size = "2x2",
bg = "aquatic plant"
}
},
["stalker"] = {
name = "Stalker",
energy = 560,
image = "Stalker.png",
machine = "basewaterpark",
recipe = {
{ "stalkeregg", 1 }
}
},
["stalkeregg"] = {
name = "Stalker Egg",
energy = 105,
image = "Stalker Egg.png"
},
["stalkertooth"] = {
name = "Stalker Teeth",
energy = 70,
image = "Stalker Tooth.png"
},
["sulphur"] = {
name = "Crystalline Sulfur"
},
["treemushroompiece"] = {
name = "Fungal Sample",
energy = 70,
image = "Fungal Sample.png"
},
["uraninitecrystal"] = {
name = "Uraninite Crystal"
},
["whitemushroom"] = {
name = "Deep Shroom",
energy = 210,
icon = {
bg = "aquatic plant"
}
},
["whitemushroomspore"] = {
name = "Deep Shroom Spore",
energy = 21,
image = "Deep Shroom Spore.png"
},
-- Machines
["builder"] = {
name = "Habitat Builder",
machine = "fabricator",
recipe = {
{ "wiringkit", 1 },
{ "computerchip", 1 },
{ "battery", 1 }
}
},
["coffeevendingmachine"] = {
name = "Coffee Vending Machine",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["constructor"] = {
name = "Mobile Vehicle Bay",
machine = "fabricator",
recipe = {
{ "titaniumingot", 1 },
{ "lubricant", 1 },
{ "powercell", 1 }
},
icon = {
size = "3x3"
}
},
["cyclopsfabricator"] = {
name = "Cyclops Upgrade Console",
image = "Cyclops.png"
},
["fabricator"] = {
name = "Fabricator",
machine = "builder",
recipe = {
{ "titanium", 1 },
{ "gold", 1 },
{ "jeweleddiskpiece", 1 }
}
},
["rocketbase"] = {
name = "Neptune Launch Platform",
machine = "constructor",
image = "Rocket Base.png",
recipe = {
{ "lead", 4 },
{ "titaniumingot", 2 },
{ "computerchip", 1 }
}
},
["workbench"] = {
name = "Modification Station",
machine = "builder",
recipe = {
{ "computerchip", 1 },
{ "titanium", 1 },
{ "diamond", 1 },
{ "lead", 1 }
}
},
-- Recipes
["advancedwiringkit"] = {
name = "Advanced Wiring Kit",
machine = "fabricator",
recipe = {
{ "wiringkit", 1 },
{ "gold", 2 },
{ "computerchip", 1 }
}
},
["aerogel"] = {
name = "Aerogel",
machine = "fabricator",
recipe = {
{ "jellyplant", 1 },
{ "aluminumoxide", 1 }
}
},
["airbladder"] = {
name = "Air Bladder",
machine = "fabricator",
recipe = {
{ "silicone", 1 },
{ "bladderfish", 1 }
}
},
["aramidfibers"] = {
name = "Synthetic Fibers",
machine = "fabricator",
recipe = {
{ "benzene", 1 },
{ "fibermesh", 1 }
}
},
["battery"] = {
name = "Battery",
machine = "fabricator",
recipe = {
{ "acidmushroom", 2 },
{ "copper", 1 }
}
},
["beacon"] = {
name = "Beacon",
machine = "fabricator",
recipe = {
{ "copper", 1 },
{ "titanium", 1 }
}
},
["benzene"] = {
name = "Benzene",
machine = "fabricator",
recipe = {
{ "bloodoil", 3 }
}
},
["bigfilteredwater"] = {
name = "Large Filtered Water",
machine = "basefiltrationmachine",
additional = {
{ "salt", 1 }
}
},
["bleach"] = {
name = "Bleach",
machine = "fabricator",
recipe = {
{ "salt", 1 },
{ "coralchunk", 1 }
}
},
["coffee"] = {
name = "Coffee Americano",
machine = "coffeevendingmachine",
},
["compass"] = {
name = "Compass",
machine = "fabricator",
recipe = {
{ "copperwire", 1 },
{ "wiringkit", 1 }
}
},
["computerchip"] = {
name = "Computer Chip",
machine = "fabricator",
recipe = {
{ "jeweleddiskpiece", 2 },
{ "gold", 1 },
{ "copperwire", 1 }
}
},
["cookedbladderfish"] = {
name = "Cooked Bladderfish",
machine = "fabricator",
recipe = {
{ "bladderfish", 1 }
}
},
["cookedboomerang"] = {
name = "Cooked Boomerang",
machine = "fabricator",
recipe = {
{ "boomerang", 1 }
}
},
["cookedeyeye"] = {
name = "Cooked Eyeye",
machine = "fabricator",
recipe = {
{ "eyeye", 1 }
}
},
["cookedgarryfish"] = {
name = "Cooked Garryfish",
machine = "fabricator",
recipe = {
{ "garryfish", 1 }
},
image = "Cooked Garryfish.png"
},
["cookedholefish"] = {
name = "Cooked Holefish",
machine = "fabricator",
recipe = {
{ "holefish", 1 }
},
image = "Cooked Holefish.png"
},
["cookedhoopfish"] = {
name = "Cooked Hoopfish",
machine = "fabricator",
recipe = {
{ "hoopfish", 1 }
}
},
["cookedhoverfish"] = {
name = "Cooked Hoverfish",
machine = "fabricator",
recipe = {
{ "hoverfish", 1 }
},
image = "Cooked Hoverfish.png"
},
["cookedlavaboomerang"] = {
name = "Cooked Magmarang",
machine = "fabricator",
recipe = {
{ "lavaboomerang", 1 }
},
image = "Cooked Magmarang.png"
},
["cookedlavaeyeye"] = {
name = "Cooked Red Eyeye",
machine = "fabricator",
recipe = {
{ "lavaeyeye", 1 }
},
image = "Cooked Red Eyeye.png"
},
["cookedoculus"] = {
name = "Cooked Oculus",
machine = "fabricator",
recipe = {
{ "oculus", 1 }
},
image = "Cooked Oculus.png"
},
["cookedpeeper"] = {
name = "Cooked Peeper",
machine = "fabricator",
recipe = {
{ "peeper", 1 }
},
image = "Cooked Peeper.png"
},
["cookedreginald"] = {
name = "Cooked Reginald",
machine = "fabricator",
recipe = {
{ "reginald", 1 }
},
image = "Cooked Reginald.png"
},
["cookedspadefish"] = {
name = "Cooked Spadefish",
machine = "fabricator",
recipe = {
{ "spadefish", 1 }
},
image = "Cooked Spadefish.png"
},
["cookedspinefish"] = {
name = "Cooked Spinefish",
machine = "fabricator",
recipe = {
{ "spinefish", 1 }
}
},
["copperwire"] = {
name = "Copper Wire",
machine = "fabricator",
recipe = {
{ "copper", 2 }
}
},
["curedbladderfish"] = {
name = "Cured Bladderfish",
machine = "fabricator",
recipe = {
{ "bladderfish", 1 },
{ "salt", 1 }
}
},
["curedboomerang"] = {
name = "Cured Boomerang",
machine = "fabricator",
recipe = {
{ "boomerang", 1 },
{ "salt", 1 }
}
},
["curedeyeye"] = {
name = "Cured Eyeye",
machine = "fabricator",
recipe = {
{ "eyeye", 1 },
{ "salt", 1 }
},
image = "Cured Eyeye.png"
},
["curedgarryfish"] = {
name = "Cured Garryfish",
machine = "fabricator",
recipe = {
{ "garryfish", 1 },
{ "salt", 1 }
},
image = "Cured Garryfish.png"
},
["curedholefish"] = {
name = "Cured Holefish",
machine = "fabricator",
recipe = {
{ "holefish", 1 },
{ "salt", 1 }
},
image = "Cured Holefish.png"
},
["curedhoopfish"] = {
name = "Cured Hoopfish",
machine = "fabricator",
recipe = {
{ "hoopfish", 1 },
{ "salt", 1 }
}
},
["curedhoverfish"] = {
name = "Cured Hoverfish",
machine = "fabricator",
recipe = {
{ "hoverfish", 1 },
{ "salt", 1 }
},
image = "Cured Hoverfish.png"
},
["curedlavaboomerang"] = {
name = "Cured Magmarang",
machine = "fabricator",
recipe = {
{ "lavaboomerang", 1 },
{ "salt", 1 }
},
image = "Cured Magmarang.png"
},
["curedlavaeyeye"] = {
name = "Cured Red Eyeye",
machine = "fabricator",
recipe = {
{ "lavaeyeye", 1 },
{ "salt", 1 }
},
image = "Cured Red Eyeye.png"
},
["curedoculus"] = {
name = "Cured Oculus",
machine = "fabricator",
recipe = {
{ "oculus", 1 },
{ "salt", 1 }
},
image = "Cured Oculus.png"
},
["curedpeeper"] = {
name = "Cured Peeper",
machine = "fabricator",
recipe = {
{ "peeper", 1 },
{ "salt", 1 }
},
image = "Cured Peeper.png"
},
["curedreginald"] = {
name = "Cured Reginald",
machine = "fabricator",
recipe = {
{ "reginald", 1 },
{ "salt", 1 }
},
image = "Cured Reginald.png"
},
["curedspadefish"] = {
name = "Cured Spadefish",
machine = "fabricator",
recipe = {
{ "spadefish", 1 },
{ "salt", 1 }
},
image = "Cured Spadefish.png"
},
["curedspinefish"] = {
name = "Cured Spinefish",
machine = "fabricator",
recipe = {
{ "spinefish", 1 },
{ "salt", 1 }
}
},
["cyclops"] = {
name = "Cyclops",
machine = "constructor",
image = "Cyclops.png",
recipe = {
{ "plasteelingot", 3 },
{ "enameledglass", 3 },
{ "lubricant", 1 },
{ "advancedwiringkit", 1 },
{ "lead", 3 }
}
},
["cyclopsdecoy"] = {
name = "Creature Decoy",
machine = "fabricator",
recipe = {
{ "titanium", 3 },
{ "wiringkit", 1 }
},
icon = {
size = "1x2"
},
quantity = 3
},
["cyclopsdecoymodule"] = {
name = "Cyclops Decoy Tube Upgrade",
machine = "cyclopsfabricator",
image = "Cyclops Decoy Tube Upgrade.png",
recipe = {
{ "titanium", 3 },
{ "lithium", 2 },
{ "aerogel", 1 }
}
},
["cyclopsfiresuppressionmodule"] = {
name = "Cyclops Fire Suppression System",
machine = "cyclopsfabricator",
image = "Cyclops Fire Suppression System.png",
recipe = {
{ "aerogel", 2 },
{ "sulphur", 2 }
}
},
["cyclopshullmodule1"] = {
name = "Cyclops Depth Module MK1",
machine = "cyclopsfabricator",
icon = {
file = "Prawn Suit Depth Module MK1 Icon.png"
},
recipe = {
{ "plasteelingot", 1 },
{ "aluminumoxide", 3 }
}
},
["cyclopshullmodule2"] = {
name = "Cyclops Depth Module MK2",
machine = "workbench",
icon = {
file = "Prawn Suit Depth Module MK2 Icon.png"
},
recipe = {
{ "cyclopshullmodule1", 1 },
{ "plasteelingot", 1 },
{ "nickel", 3 }
}
},
["cyclopshullmodule3"] = {
name = "Cyclops Depth Module MK3",
machine = "workbench",
recipe = {
{ "cyclopshullmodule2", 1 },
{ "plasteelingot", 1 },
{ "kyanite", 3 }
}
},
["cyclopsseamothrepairmodule"] = {
name = "Cyclops Docking Bay Repair Module",
image = "Cyclops Docking Bay Repair Module.png",
machine = "cyclopsfabricator",
recipe = {
{ "welder", 1 },
{ "copperwire", 1 }
}
},
["cyclopsshieldmodule"] = {
name = "Cyclops Shield Generator",
machine = "cyclopsfabricator",
image = "Cyclops Shield Generator.png",
recipe = {
{ "advancedwiringkit", 1 },
{ "polyaniline", 1 },
{ "powercell", 1 }
}
},
["cyclopssonarmodule"] = {
name = "Cyclops Sonar Upgrade",
machine = "cyclopsfabricator",
image = "Cyclops Sonar Upgrade.png",
recipe = {
{ "computerchip", 1 },
{ "magnetite", 3 }
}
},
["cyclopsthermalreactormodule"] = {
name = "Cyclops Thermal Reactor Module",
machine = "cyclopsfabricator",
icon = {
file = "Thermal Reactor Icon.png"
},
recipe = {
{ "polyaniline", 2 },
{ "kyanite", 4 },
{ "wiringkit", 1 }
}
},
["depletedreactorrod"] = {
name = "Depleted Reactor Rod",
image = "Depleted Reactor Rod.png",
original = "energy"
},
["disinfectedwater"] = {
name = "Disinfected Water",
machine = "fabricator",
recipe = {
{ "bleach", 1 }
},
quantity = 2
},
["divereel"] = {
name = "Pathfinder Tool",
machine = "fabricator",
recipe = {
{ "creepvineseedcluster", 2 },
{ "copperwire", 1 },
{ "titanium", 1 }
}
},
["doubletank"] = {
name = "High Capacity O₂ Tank",
machine = "fabricator",
recipe = {
{ "tank", 1 },
{ "glass", 2 },
{ "titanium", 4 },
{ "silver", 1 }
},
icon = {
size = "2x3"
}
},
["enameledglass"] = {
name = "Enameled Glass",
machine = "fabricator",
recipe = {
{ "stalkertooth", 1 },
{ "glass", 1 }
}
},
["exosuit"] = {
name = "Prawn Suit",
machine = "constructor",
recipe = {
{ "plasteelingot", 2 },
{ "aerogel", 2 },
{ "enameledglass", 1 },
{ "diamond", 2 },
{ "lead", 2 }
}
},
["exosuitdrillarmmodule"] = {
name = "Prawn Suit Drill Arm",
machine = "baseupgradeconsole",
icon = {
bg = "prawn arm"
},
recipe = {
{ "titanium", 5 },
{ "lithium", 1 },
{ "diamond", 4 }
}
},
["exosuitgrapplingarmmodule"] = {
name = "Prawn Suit Grappling Arm",
machine = "baseupgradeconsole",
icon = {
bg = "prawn arm"
},
recipe = {
{ "advancedwiringkit", 1 },
{ "titanium", 5 },
{ "lithium", 1 },
{ "benzene", 1 }
}
},
["exosuitjetupgrademodule"] = {
name = "Prawn Suit Jump Jet Upgrade",
machine = "baseupgradeconsole",
recipe = {
{ "nickel", 2 },
{ "sulphur", 3 },
{ "titanium", 5 },
{ "lithium", 1 }
}
},
["exohullmodule1"] = {
name = "Prawn Suit Depth Module MK1",
machine = "baseupgradeconsole",
recipe = {
{ "plasteelingot", 1 },
{ "nickel", 3 },
{ "aluminumoxide", 2 }
}
},
["exohullmodule2"] = {
name = "Prawn Suit Depth Module MK2",
machine = "workbench",
recipe = {
{ "exohullmodule1", 1 },
{ "titanium", 5 },
{ "lithium", 2 },
{ "kyanite", 3 }
}
},
["exosuitpropulsionarmmodule"] = {
name = "Prawn Suit Propulsion Cannon",
machine = "baseupgradeconsole",
icon = {
bg = "prawn arm"
},
recipe = {
{ "computerchip", 1 },
{ "titanium", 5 },
{ "lithium", 1 },
{ "magnetite", 2 }
}
},
["exosuitthermalreactormodule"] = {
name = "Prawn Suit Thermal Reactor",
machine = "baseupgradeconsole",
icon = {
file = "Thermal Reactor Icon.png"
},
recipe = {
{ "kyanite", 2 },
{ "polyaniline", 2 },
{ "wiringkit", 1 }
}
},
["exosuittorpedoarmmodule"] = {
name = "Prawn Suit Torpedo Arm",
machine = "baseupgradeconsole",
icon = {
bg = "prawn arm"
},
recipe = {
{ "titanium", 5 },
{ "lithium", 1 },
{ "aerogel", 1 }
}
},
["fibermesh"] = {
name = "Fiber Mesh",
machine = "fabricator",
recipe = {
{ "creepvinepiece", 2 }
}
},
["filteredwater"] = {
name = "Filtered Water",
machine = "fabricator",
recipe = {
{ "bladderfish", 1 }
}
},
["fins"] = {
name = "Fins",
machine = "fabricator",
recipe = {
{ "silicone", 2 }
},
icon = {
size = "2x2"
}
},
["fireextinguisher"] = {
name = "Fire Extinguisher",
machine = "fabricator",
recipe = {
{ "titanium", 3 }
}
},
["firstaidkit"] = {
name = "First Aid Kit",
machine = "fabricator",
recipe = {
{ "fibermesh", 1 }
}
},
["flare"] = {
name = "Flare",
machine = "fabricator",
recipe = {
{ "crashpowder", 1 }
},
quantity = 5
},
["flashlight"] = {
name = "Flashlight",
machine = "fabricator",
recipe = {
{ "battery", 1 },
{ "glass", 1 }
}
},
["gastorpedo"] = {
name = "Gas Torpedo",
machine = "baseupgradeconsole",
recipe = {
{ "titanium", 1 },
{ "gaspod", 1 }
},
icon = {
size = "2x2"
},
quantity = 2
},
["glass"] = {
name = "Glass",
machine = "fabricator",
recipe = {
{ "quartz", 2 }
}
},
["gravtrap"] = {
name = "Grav Trap",
machine = "fabricator",
recipe = {
{ "battery", 1 },
{ "copper", 1 },
{ "titanium", 1 }
},
icon = {
size = "2x2"
}
},
["hatchingenzymes"] = {
name = "Hatching Enzymes",
machine = "fabricator",
image = "Hatching Enzymes.png",
recipe = {
{ "eyesplantseed", 1 },
{ "treemushroompiece", 1 },
{ "redgreententacleseed", 1 },
{ "seacrownseed", 1 },
{ "kooshchunk", 1 }
}
},
["heatblade"] = {
name = "Thermoblade",
machine = "workbench",
recipe = {
{ "knife", 1 },
{ "battery", 1 }
}
},
["highcapacitytank"] = {
name = "Ultra High Capacity Tank",
machine = "workbench",
recipe = {
{ "doubletank", 1 },
{ "lithium", 4 }
},
icon = {
size = "3x3"
}
},
["hydrochloricacid"] = {
name = "Hydrochloric Acid",
machine = "fabricator",
recipe = {
{ "whitemushroom", 3 },
{ "salt", 1 }
}
},
["knife"] = {
name = "Survival Knife",
machine = "fabricator",
recipe = {
{ "silicone", 1 },
{ "titanium", 1 }
}
},
["lasercutter"] = {
name = "Laser Cutter",
machine = "fabricator",
recipe = {
{ "diamond", 2 },
{ "battery", 1 },
{ "titanium", 1 },
{ "crashpowder", 1 }
}
},
["ledlight"] = {
name = "Light Stick",
machine = "fabricator",
recipe = {
{ "battery", 1 },
{ "titanium", 1 },
{ "glass", 1 }
}
},
["lubricant"] = {
name = "Lubricant",
energy = 20,
machine = "fabricator",
recipe = {
{ "creepvineseedcluster", 1 }
}
},
["maproomcamera"] = {
name = "Camera Drone",
machine = "basemaproom",
recipe = {
{ "computerchip", 1 },
{ "battery", 1 },
{ "glass", 1 },
{ "titanium", 1 }
},
icon = {
size = "2x2"
}
},
["maproomhudchip"] = {
name = "Scanner Room HUD Chip",
machine = "basemaproom",
recipe = {
{ "computerchip", 1 },
{ "magnetite", 1 }
}
},
["maproomupgradescanrange"] = {
name = "Scanner Room Range Upgrade",
machine = "basemaproom",
recipe = {
{ "copper", 1 },
{ "magnetite", 1 }
}
},
["maproomupgradescanspeed"] = {
name = "Scanner Room Speed Upgrade",
machine = "basemaproom",
recipe = {
{ "silver", 1 },
{ "gold", 1 }
}
},
["pipe"] = {
name = "Pipe",
machine = "fabricator",
recipe = {
{ "titanium", 2 }
},
quantity = 5
},
["pipesurfacefloater"] = {
name = "Floating Air Pump",
machine = "fabricator",
recipe = {
{ "titanium", 2 }
}
},
["plasteelingot"] = {
name = "Plasteel Ingot",
machine = "fabricator",
recipe = {
{ "titaniumingot", 1 },
{ "lithium", 2 }
}
},
["plasteeltank"] = {
name = "Lightweight High Capacity Tank",
machine = "workbench",
recipe = {
{ "doubletank", 1 },
{ "plasteelingot", 1 }
},
icon = {
size = "2x3"
}
},
["polyaniline"] = {
name = "Polyaniline",
machine = "fabricator",
recipe = {
{ "gold", 1 },
{ "hydrochloricacid", 1 }
}
},
["powercell"] = {
name = "Power Cell",
machine = "fabricator",
recipe = {
{ "battery", 2 },
{ "silicone", 1 }
}
},
["powerupgrademodule"] = {
name = "Cyclops Engine Efficiency Module",
machine = "cyclopsfabricator",
image = "Power Efficiency Upgrade Module.png",
recipe = {
{ "computerchip", 1 },
{ "benzene", 1 },
{ "polyaniline", 1 }
}
},
["precursorionbattery"] = {
name = "Ion Battery",
machine = "fabricator",
recipe = {
{ "precursorioncrystal", 1 },
{ "gold", 1 },
{ "silver", 1 }
}
},
["precursorionpowercell"] = {
name = "Ion Power Cell",
machine = "fabricator",
recipe = {
{ "precursorionbattery", 2 },
{ "silicone", 1 }
}
},
["precursorkey_blue"] = {
name = "Blue Tablet",
machine = "fabricator",
recipe = {
{ "precursorioncrystal", 1 },
{ "kyanite", 2 }
}
},
["precursorkey_orange"] = {
name = "Orange Tablet",
machine = "fabricator",
recipe = {
{ "precursorioncrystal", 1 },
{ "nickel", 2 }
}
},
["precursorkey_purple"] = {
name = "Purple Tablet",
machine = "fabricator",
recipe = {
{ "precursorioncrystal", 1 },
{ "diamond", 2 }
}
},
["propulsioncannon"] = {
name = "Propulsion Cannon",
machine = "fabricator",
recipe = {
{ "wiringkit", 1 },
{ "battery", 1 },
{ "titanium", 1 }
},
icon = {
size = "2x2"
}
},
["radiationgloves"] = {
name = "Radiation Gloves",
image = "Radiation Gloves.png",
original = "radiationsuit"
},
["radiationhelmet"] = {
name = "Radiation Helmet",
image = "Radiation Helmet.png",
original = "radiationsuit"
},
["radiationsuit"] = {
name = "Radiation Suit",
machine = "fabricator",
image = "Radiation Suit.png",
recipe = {
{ "fibermesh", 2 },
{ "lead", 2 }
},
icon = {
size = "2x2"
},
additional = {
{ "radiationhelmet", 1 },
{ "radiationgloves", 1 }
}
},
["reactorrod"] = {
name = "Reactor Rod",
nuclear = 20000,
machine = "fabricator",
recipe = {
{ "uraninitecrystal", 3 },
{ "lead", 1 },
{ "titanium", 1 },
{ "glass", 1 }
}
},
["rebreather"] = {
name = "Rebreather",
machine = "fabricator",
recipe = {
{ "wiringkit", 1 },
{ "fibermesh", 1 }
}
},
["reinforceddivesuit"] = {
name = "Reinforced Dive Suit",
image = "Reinforced Dive Suit.png",
machine = "fabricator",
recipe = {
{ "aramidfibers", 1 },
{ "diamond", 2 },
{ "titanium", 2 }
},
additional = {
{ "reinforcedgloves", 1 }
}
},
["reinforcedgloves"] = {
name = "Reinforced Gloves",
original = "reinforceddivesuit",
icon = {
size = "2x2"
}
},
["repulsioncannon"] = {
name = "Repulsion Cannon",
machine = "workbench",
recipe = {
{ "propulsioncannon", 1 },
{ "computerchip", 1 },
{ "magnetite", 2 }
},
icon = {
size = "2x2"
}
},
["rocketbaseladder"] = {
name = "Neptune Gantry",
machine = "rocketbase",
image = "Neptune Escape Rocket Gantry.png",
recipe = {
{ "plasteelingot", 1 },
{ "copperwire", 1 },
{ "lubricant", 1 }
}
},
["rocketstage1"] = {
name = "Neptune Boosters",
machine = "rocketbase",
image = "Neptune Escape Rocket Stage 1.png",
recipe = {
{ "plasteelingot", 1 },
{ "nickel", 3 },
{ "aerogel", 2 },
{ "wiringkit", 1 }
}
},
["rocketstage2"] = {
name = "Neptune Fuel Reserve",
machine = "rocketbase",
image = "Neptune Escape Rocket Stage 2.png",
recipe = {
{ "plasteelingot", 1 },
{ "sulphur", 4 },
{ "kyanite", 4 },
{ "precursorionpowercell", 2 }
}
},
["rocketstage3"] = {
name = "Neptune Cockpit",
machine = "rocketbase",
image = "Neptune Escape Rocket Stage 3.png",
recipe = {
{ "cyclopsshieldmodule", 1 },
{ "plasteelingot", 1 },
{ "enameledglass", 1 },
{ "computerchip", 1 }
}
},
["salt"] = {
name = "Salt Deposit",
original = "bigfilteredwater"
},
["scanner"] = {
name = "Scanner",
machine = "fabricator",
recipe = {
{ "battery", 1 },
{ "titanium", 1 }
}
},
["seaglide"] = {
name = "Seaglide",
machine = "fabricator",
recipe = {
{ "battery", 1 },
{ "lubricant", 1 },
{ "copperwire", 1 },
{ "titanium", 1 }
},
icon = {
size = "2x3"
}
},
["seamoth"] = {
name = "Seamoth",
image = "Seamoth.png",
machine = "constructor",
recipe = {
{ "titaniumingot", 1 },
{ "powercell", 1 },
{ "glass", 2 },
{ "lubricant", 1 },
{ "lead", 1 }
}
},
["seamothelectricaldefense"] = {
name = "Seamoth Perimeter Defense System",
image = "Seamoth Perimeter Defense System.png",
machine = "baseupgradeconsole",
recipe = {
{ "polyaniline", 1 },
{ "wiringkit", 1 }
}
},
["seamothsolarcharge"] = {
name = "Seamoth Solar Charger",
image = "Seamoth Solar Charger.png",
machine = "baseupgradeconsole",
recipe = {
{ "advancedwiringkit", 1 },
{ "enameledglass", 1 }
}
},
["seamothsonarmodule"] = {
name = "Seamoth Sonar",
image = "Seamoth Sonar.png",
machine = "baseupgradeconsole",
recipe = {
{ "copperwire", 1 },
{ "magnetite", 2 }
}
},
["seamothtorpedomodule"] = {
name = "Torpedo System",
image = "Seamoth Torpedo System.png",
machine = "baseupgradeconsole",
recipe = {
{ "titanium", 3 },
{ "lithium", 1 },
{ "aerogel", 1 }
}
},
["silicone"] = {
name = "Silicone Rubber",
machine = "fabricator",
recipe = {
{ "creepvineseedcluster", 1 }
},
quantity = 2
},
["smallstorage"] = {
name = "Waterproof Locker",
machine = "fabricator",
recipe = {
{ "titanium", 4 }
},
icon = {
size = "2x2"
}
},
["stasisrifle"] = {
name = "Stasis Rifle",
machine = "fabricator",
recipe = {
{ "computerchip", 1 },
{ "battery", 1 },
{ "titanium", 1 },
{ "magnetite", 2 }
},
icon = {
size = "2x2"
}
},
["stillsuit"] = {
name = "Stillsuit",
image = "Stillsuit.png",
machine = "fabricator",
recipe = {
{ "aramidfibers", 1 },
{ "aerogel", 1 },
{ "copperwire", 1 }
}
},
["stillsuitwater"] = {
name = "Reclaimed Water",
machine = "stillsuit"
},
["swimchargefins"] = {
name = "Swim Charge Fins",
machine = "workbench",
recipe = {
{ "fins", 1 },
{ "polyaniline", 1 },
{ "wiringkit", 1 }
},
icon = {
size = "2x2"
},
},
["tank"] = {
name = "Standard O₂ Tank",
machine = "fabricator",
recipe = {
{ "titanium" , 3 }
},
icon = {
size = "2x3"
}
},
["titanium"] = {
name = "Titanium",
machine = "fabricator",
recipe = {
{ "scrapmetal", 1 }
},
quantity = 4
},
["titaniumingot"] = {
name = "Titanium Ingot",
machine = "fabricator",
recipe = {
{ "titanium", 10 }
}
},
["ultraglidefins"] = {
name = "Ultra Glide Fins",
machine = "workbench",
recipe = {
{ "fins", 1 },
{ "silicone", 2 },
{ "titanium", 1 },
{ "lithium", 1 }
},
icon = {
size = "2x2"
}
},
["vehiclearmorplating"] = {
name = "Hull Reinforcement",
machine = "baseupgradeconsole",
recipe = {
{ "titanium", 3 },
{ "lithium", 1 },
{ "diamond", 4 }
}
},
["vehiclehullmodule1"] = {
name = "Seamoth Depth Module MK1",
image = "Seamoth Depth Module MK1.png",
machine = "baseupgradeconsole",
recipe = {
{ "titaniumingot", 1 },
{ "glass", 2 }
}
},
["vehiclehullmodule2"] = {
name = "Seamoth Depth Module MK2",
image = "Seamoth Depth Module MK2.png",
machine = "workbench",
recipe = {
{ "vehiclehullmodule1", 1 },
{ "plasteelingot", 1 },
{ "magnetite", 2 },
{ "enameledglass", 1 }
}
},
["vehiclehullmodule3"] = {
name = "Seamoth Depth Module MK3",
image = "Seamoth Depth Module MK3.png",
machine = "workbench",
recipe = {
{ "vehiclehullmodule3", 1 },
{ "plasteelingot", 1 },
{ "aluminumoxide", 3 }
}
},
["vehiclepowerupgrademodule"] = {
name = "Engine Efficiency Module",
machine = "baseupgradeconsole",
recipe = {
{ "computerchip", 1 },
{ "polyaniline", 1 }
}
},
["vehiclestoragemodule"] = {
name = "Storage Module",
machine = "baseupgradeconsole",
recipe = {
{ "titanium", 3 },
{ "lithium", 1 }
}
},
["vortextorpedo"] = {
name = "Vortex Torpedo",
machine = "baseupgradeconsole",
recipe = {
{ "titanium", 1 },
{ "magnetite", 1 }
},
icon = {
size = "2x2"
},
quantity = 2
},
["welder"] = {
name = "Repair Tool",
machine = "fabricator",
recipe = {
{ "silicone", 1 },
{ "crashpowder", 1 },
{ "titanium", 1 }
}
},
["wiringkit"] = {
name = "Wiring Kit",
machine = "fabricator",
recipe = {
{ "silver", 2 }
}
},
-- Base pieces
["basecorridori"] = {
name = "I Compartment",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["basecorridorl"] = {
name = "L Compartment",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["basecorridort"] = {
name = "T Compartment",
machine = "builder",
recipe = {
{ "titanium", 3 }
}
},
["basecorridorx"] = {
name = "X Compartment",
machine = "builder",
recipe = {
{ "titanium", 3 }
}
},
["basefoundation"] = {
name = "Foundation",
machine = "builder",
recipe = {
{ "titanium", 2 },
{ "lead", 2 }
}
},
["basecorridorglassi"] = {
name = "Glass Compartment",
machine = "builder",
icon = {
file = "I Glass Compartment Icon.png"
},
recipe = {
{ "glass", 2 }
}
},
["basecorridorglassl"] = {
name = "L Glass Compartment",
machine = "builder",
recipe = {
{ "glass", 2 }
}
},
["basehatch"] = {
name = "Hatch",
machine = "builder",
recipe = {
{ "quartz", 1 },
{ "titanium", 2 }
}
},
["baseroom"] = {
name = "Multipurpose Room",
machine = "builder",
recipe = {
{ "titanium", 6 }
}
},
["basemoonpool"] = {
name = "Moonpool",
machine = "builder",
recipe = {
{ "titaniumingot", 2 },
{ "lubricant", 1 },
{ "lead", 2 }
}
},
["baseobservatory"] = {
name = "Observatory",
machine = "builder",
recipe = {
{ "enameledglass", 2 },
{ "titanium", 1 }
}
},
["basereinforcement"] = {
name = "Reinforcement",
machine = "builder",
recipe = {
{ "lithium", 1 },
{ "titanium", 3 }
}
},
["basemaproom"] = {
name = "Scanner Room",
machine = "builder",
recipe = {
{ "titanium", 5 },
{ "copper", 2 },
{ "gold", 1 },
{ "jeweleddiskpiece", 1 }
},
additional = {
{ "maproomcamera", 2 }
}
},
["baseconnector"] = {
name = "Vertical Connector",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["basewindow"] = {
name = "Window",
machine = "builder",
recipe = {
{ "glass", 1 }
}
},
["basepipeconnector"] = {
name = "Base-attached Air Pump",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["farmingtray"] = {
name = "Exterior Growbed",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["techlight"] = {
name = "Floodlight",
machine = "builder",
recipe = {
{ "glass", 1 },
{ "titanium", 1 }
}
},
["powertransmitter"] = {
name = "Power Transmitter",
machine = "builder",
icon = {
file = "Power Transmitter Icon (BZ).png"
},
recipe = {
{ "gold", 1 },
{ "titanium", 1 }
}
},
["solarpanel"] = {
name = "Solar Panel",
machine = "builder",
icon = {
file = "Solar Panel Icon (BZ).png"
},
recipe = {
{ "quartz", 2 },
{ "titanium", 2 },
{ "copper", 1 }
}
},
["spotlight"] = {
name = "Spotlight",
machine = "builder",
recipe = {
{ "glass", 1 },
{ "titanium", 2 }
}
},
["thermalplant"] = {
name = "Thermal Plant",
machine = "builder",
icon = {
file = "Thermal Plant Icon (BZ).png"
},
recipe = {
{ "titanium", 5 },
{ "magnetite", 2 },
{ "aerogel", 1 }
}
},
["basewaterpark"] = {
name = "Alien Containment",
machine = "builder",
recipe = {
{ "glass", 5 },
{ "titanium", 2 }
}
},
["basebioreactor"] = {
name = "Bioreactor",
image = "Bioreactor.png",
machine = "builder",
recipe = {
{ "titanium", 3 },
{ "wiringkit", 1 },
{ "lubricant", 1 }
}
},
["basebulkhead"] = {
name = "Bulkhead",
machine = "builder",
recipe = {
{ "titanium", 3 },
{ "silicone", 1 }
}
},
["baseladder"] = {
name = "Ladder",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["basenuclearreactor"] = {
name = "Nuclear Reactor",
image = "Nuclear Reactor.png",
machine = "builder",
recipe = {
{ "plasteelingot", 1 },
{ "advancedwiringkit", 1 },
{ "lead", 3 }
}
},
["basefiltrationmachine"] = {
name = "Water Filtration Machine",
machine = "builder",
recipe = {
{ "titanium", 3 },
{ "copperwire", 1 },
{ "aerogel", 1 }
}
},
["baseupgradeconsole"] = {
name = "Vehicle Upgrade Console",
machine = "builder",
recipe = {
{ "titanium", 3 },
{ "computerchip", 1 },
{ "copperwire", 1 }
}
},
["aquarium"] = {
name = "Aquarium",
machine = "builder",
recipe = {
{ "glass", 2 },
{ "titanium", 1 }
}
},
["planterpot"] = {
name = "Basic Plant Pot",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["batterycharger"] = {
name = "Battery Charger",
machine = "builder",
recipe = {
{ "wiringkit", 1 },
{ "copperwire", 1 },
{ "titanium", 1 }
}
},
["planterpot3"] = {
name = "Chic Plant Pot",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["planterpot2"] = {
name = "Composite Plant Pot",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["planterbox"] = {
name = "Indoor Growbed",
machine = "builder",
recipe = {
{ "titanium", 4 }
}
},
["locker"] = {
name = "Locker",
machine = "builder",
recipe = {
{ "quartz", 1 },
{ "titanium", 2 }
}
},
["medicalcabinet"] = {
name = "Medical Kit Fabricator",
machine = "builder",
recipe = {
{ "computerchip", 1 },
{ "fibermesh", 1 },
{ "silver", 1 },
{ "titanium", 1 }
}
},
["plantershelf"] = {
name = "Plant Shelf",
machine = "builder",
recipe = {
{ "titanium", 1 }
}
},
["powercellcharger"] = {
name = "Power Cell Charger",
machine = "builder",
recipe = {
{ "advancedwiringkit", 1 },
{ "aluminumoxide", 2 },
{ "titanium", 2 }
}
},
["radio"] = {
name = "Radio",
machine = "builder",
recipe = {
{ "titanium", 1 },
{ "copper", 1 }
}
},
["smalllocker"] = {
name = "Wall Locker",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["bartable"] = {
name = "Bar Table",
machine = "builder",
recipe = {
{ "glass", 1 },
{ "titanium", 1 }
}
},
["bed1"] = {
name = "Basic Double Bed",
machine = "builder",
recipe = {
{ "titanium", 2 },
{ "fibermesh", 1 }
}
},
["bench"] = {
name = "Bench",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["starshipchair3"] = {
name = "Command Chair",
machine = "builder",
recipe = {
{ "titanium", 1 }
}
},
["labcounter"] = {
name = "Counter",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["starshipdesk"] = {
name = "Desk",
machine = "builder",
recipe = {
{ "titanium", 1 }
}
},
["labtrashcan"] = {
name = "Nuclear Waste Disposal",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["starshipchair2"] = {
name = "Office Chair",
machine = "builder",
recipe = {
{ "titanium", 1 }
}
},
["pictureframe"] = {
name = "Picture Frame",
machine = "builder",
recipe = {
{ "copperwire", 1 }
}
},
["bed2"] = {
name = "Quilted Double Bed",
machine = "builder",
recipe = {
{ "titanium", 2 },
{ "fibermesh", 1 }
}
},
["sign"] = {
name = "Sign",
machine = "builder",
recipe = {
{ "copperwire", 1 }
}
},
["narrowbed"] = {
name = "Single Bed",
machine = "builder",
recipe = {
{ "titanium", 1 },
{ "fibermesh", 1 }
}
},
["singlewallshelf"] = {
name = "Single Wall Shelf",
machine = "builder",
recipe = {
{ "titanium", 1 }
}
},
["starshipchair"] = {
name = "Swivel Chair",
machine = "builder",
recipe = {
{ "titanium", 1 }
}
},
["trashcans"] = {
name = "Trash Can",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
["vendingmachine"] = {
name = "Vending Machine",
machine = "builder",
image = "Vending Machine.png",
recipe = {
{ "glass", 1 },
{ "titanium", 2 }
}
},
["baseplanter"] = {
name = "Wall Planter",
machine = "builder",
recipe = {
{ "titanium", 1 }
}
},
["wallshelves"] = {
name = "Wall Shelves",
machine = "builder",
recipe = {
{ "titanium", 2 }
}
},
-- Special items
["marki2"] = {
name = "An Unusual Doll",
machine = "builder",
image = "Markiplier Doll.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["marki1"] = {
name = "An Unusual Doll 2",
machine = "builder",
image = "Marki1.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["jacksepticeye"] = {
name = "Jack's Septic Tank",
machine = "builder",
image = "Jack's Septic Tank.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["eatmydiction"] = {
name = "Marla",
machine = "builder",
image = "Eatmydiction.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["bikemanhullplate"] = {
name = "Bikeman Hull Plate",
machine = "builder",
image = "Bikeman Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["devtestitem"] = {
name = "Dev Test Item",
machine = "builder",
image = "Dev Test Item Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["dioramahullplate"] = {
name = "Diorama Hull Plate",
machine = "builder",
image = "Diorama Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["eatmydictionhullplate"] = {
name = "Eat My Diction Hull Plate",
machine = "builder",
image = "Eat My Diction Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["gilathisshullplate"] = {
name = "Gilathiss Hull Plate",
machine = "builder",
image = "Gilathiss Hull Plate.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["igphullplate"] = {
name = "Indie Game Promoter Hull Plate",
machine = "builder",
image = "Indie Game Promoter Hull Plate.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["jacksepticeyehullplate"] = {
name = "JackSepticEye Hull Plate",
machine = "builder",
image = "JackSepticEye Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["lordminionhullplate"] = {
name = "LordMinion Hull Plate",
machine = "builder",
image = "Lordminion Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["markiplierhullplate"] = {
name = "Markiplier Hull Plate",
machine = "builder",
image = "Markiplier Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["muyskermhullplate"] = {
name = "Muyskerm Hull Plate",
machine = "builder",
image = "Muyskerm Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
},
["specialhullplate"] = {
name = "Special Hull Plate",
machine = "builder",
image = "Special Hull Plate Blueprint.png",
recipe = {
{ "titanium", 1 },
{ "glass", 1 }
}
}
}