From dd916684ad3dc8779ee5804826d7b53d7c6225cc Mon Sep 17 00:00:00 2001 From: Roland Forgo Date: Sat, 18 Feb 2017 10:15:39 +0100 Subject: [PATCH] Adds an autoimplanter to research designs, quite high tech and material needs come with it. (#216) --- code/modules/research/designs.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index d011ae23e2..a9bfadee41 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -389,6 +389,16 @@ other types of metals and chemistry for reagents). build_path = /obj/item/clothing/glasses/hud/diagnostic/night category = list("Equipment") +/datum/design/autoimplanter + name = "Autoimplanter" + desc = "An autoimplanter for implanting yourself without the need of another person." + id = "autoimplanter" + req_tech = list("materials" = 7, "engineering" = 7, "powerstorage" = 7, "plasmatech" = 7, "biotech" = 7) + build_type = PROTOLATHE + materials = list(MAT_METAL = 30000, MAT_GLASS = 30000, MAT_DIAMOND = 20000, MAT_PLASMA = 20000, MAT_TITANIUM = 20000) + build_path = /obj/item/device/autoimplanter + category = list("Medical Designs") + ///////////////////////////////////////// //////////////////Test/////////////////// /////////////////////////////////////////