diff --git a/code/modules/research/circuitprinter.dm b/code/modules/research/circuitprinter.dm index df34235e4a6..431d675c16d 100644 --- a/code/modules/research/circuitprinter.dm +++ b/code/modules/research/circuitprinter.dm @@ -1,7 +1,7 @@ /*///////////////Circuit Imprinter (By Darem)//////////////////////// - Used to print new circuit boards (for computers and similar systems) and AI modules. Each circuit board pattern are stored in -a /datum/desgin on the linked R&D console. You can then print them out in a fasion similar to a regular lathe. However, instead of -using metal and glass, it uses glass and reagents (usually sulfuric acis). + Used to print new circuit boards (for computers and similar systems) and AI modules. Each circuit board pattern is stored in +a /datum/design on the linked R&D console. You can then print them out in a fashion similar to a regular lathe using glass and +sometimes a secondary material (often gold or diamond). */ /obj/machinery/r_n_d/circuit_imprinter diff --git a/code/modules/research/designs/machine_designs.dm b/code/modules/research/designs/machine_designs.dm index e86e41cd9f1..d678167b9e2 100644 --- a/code/modules/research/designs/machine_designs.dm +++ b/code/modules/research/designs/machine_designs.dm @@ -521,6 +521,16 @@ build_path = /obj/item/circuitboard/deepfryer category = list("Misc. Machinery") +/datum/design/stovetop + name = "Machine Board (Stovetop)" + desc = "The circuit board for a Stovetop." + id = "stove" + req_tech = list("biotech" = 1) + build_type = IMPRINTER + materials = list(MAT_GLASS = 1000) + build_path = /obj/item/circuitboard/cooking/stove + category = list("Misc. Machinery") + /datum/design/orion_trail name = "Machine Board (Orion Trail Arcade Machine)" desc = "Allows for the construction of circuit boards used to build a new Orion Trail machine."