From d623c977417bc019558676becc134f468f80ff01 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Wed, 19 Aug 2015 18:16:52 -0400 Subject: [PATCH] Detective Scanner Protolathe Production --- code/modules/DetectiveWork/scanner.dm | 1 + code/modules/research/designs/equipment_designs.dm | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/code/modules/DetectiveWork/scanner.dm b/code/modules/DetectiveWork/scanner.dm index d694e4c1645..5aec21ac94e 100644 --- a/code/modules/DetectiveWork/scanner.dm +++ b/code/modules/DetectiveWork/scanner.dm @@ -10,6 +10,7 @@ item_state = "electronic" flags = CONDUCT | NOBLUDGEON slot_flags = SLOT_BELT + origin_tech = "magnets=4;biotech=2" var/scanning = 0 var/list/log = list() diff --git a/code/modules/research/designs/equipment_designs.dm b/code/modules/research/designs/equipment_designs.dm index 10a6a18ee31..ab78834a877 100644 --- a/code/modules/research/designs/equipment_designs.dm +++ b/code/modules/research/designs/equipment_designs.dm @@ -99,4 +99,15 @@ build_type = PROTOLATHE materials = list("$metal" = 4000, "$glass" = 1000) build_path = /obj/item/clothing/mask/gas/welding + category = list("Equipment") + +/datum/design/detective_scanner + name = "Forensic Scanner" + desc = "A high tech scanner designed for forensic evidence collection, DNA recovery, and fiber analysis." + id = "detectivescanner" + req_tech = list("biotech" = 2, "magnets" = 4) + build_type = PROTOLATHE + materials = list("$metal" = 6000, "$glass" = 2000) + build_path = /obj/item/device/detective_scanner + locked = 1 //no validhunting scientists. category = list("Equipment") \ No newline at end of file