From 47cc90ca1a1e2411634491f87f1db1202fcf62bb Mon Sep 17 00:00:00 2001 From: Lexus Langg Date: Tue, 22 May 2012 12:32:07 -0700 Subject: [PATCH] Added empty lockboxes and secure briefcases to the R&D Designs. Was suggested here: http://baystation12.net/forums/index.php/topic,3287.msg84734.html#msg84734 Signed-off-by: Lexus Langg --- code/modules/research/designs.dm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index cbee8cea01b..9470049029d 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -1518,6 +1518,28 @@ datum build_path = "/obj/item/clothing/glasses/hud/security" locked = 1 +///////////////////////////////////////// +///////////////Secure Items////////////// +///////////////////////////////////////// + + lockbox + name = "Empty Lockbox" + desc = "A locked box" + id = "lockbox" + req_tech = list("materials" = 2, "engineering" = 3) + build_type = PROTOLATHE + materials = list("$metal" = 200, "$glass" = 20) + build_path = "/obj/item/weapon/storage/lockbox" + + secbriefcase + name = "Secure Briefcase" + desc = "A large briefcase with a digital locking system." + id = "secbriefcase" + req_tech = list("materials" = 2, "engineering" = 3) + build_type = PROTOLATHE + materials = list("$metal" = 200, "$glass" = 20, "$silver" = 10) + build_path = "/obj/item/weapon/secstorage/sbriefcase" + ///////////////////////////////////////// //////////////////Test/////////////////// /////////////////////////////////////////