From 36709a3c1d1cf51cf6a1b9620b02fe211e610305 Mon Sep 17 00:00:00 2001 From: Vile Beggar Date: Wed, 16 Jan 2019 00:25:04 +0100 Subject: [PATCH] boo --- .../research/designs/autolathe_designs.dm | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 3a73f663a3b..a5fe1297553 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -922,3 +922,30 @@ materials = list(MAT_METAL = 100, MAT_GLASS = 100) build_path = /obj/item/disk/holodisk category = list("initial", "Misc") + +/datum/design/circuit + name = "Blue Circuit Tile" + id = "circuit" + build_type = AUTOLATHE + materials = list(MAT_METAL = 500, MAT_GLASS = 500) + build_path = /obj/item/stack/tile/circuit + category = list("initial", "Misc") + maxstack = 50 + +/datum/design/circuitgreen + name = "Green Circuit Tile" + id = "circuitgreen" + build_type = AUTOLATHE + materials = list(MAT_METAL = 500, MAT_GLASS = 500) + build_path = /obj/item/stack/tile/circuit/green + category = list("initial", "Misc") + maxstack = 50 + +/datum/design/circuitred + name = "Red Circuit Tile" + id = "circuitred" + build_type = AUTOLATHE + materials = list(MAT_METAL = 500, MAT_GLASS = 500) + build_path = /obj/item/stack/tile/circuit/red + category = list("initial", "Misc") + maxstack = 50