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/////////////////// /////////////////////////////////////////