diff --git a/code/modules/research/designs/misc_designs.dm b/code/modules/research/designs/misc_designs.dm index 1036bb6e188..d9325c6b07b 100644 --- a/code/modules/research/designs/misc_designs.dm +++ b/code/modules/research/designs/misc_designs.dm @@ -80,3 +80,12 @@ materials = list(MAT_METAL=500, MAT_GLASS=50) build_path = /obj/item/clothing/mask/muzzle/safety/shock category = list("Miscellaneous") +/datum/design/data_disk + name = "Data Disk" + desc = "Disk that allows you to store genetic data." + id = "datadisk" + req_tech = list("programming" = 3) + build_type = PROTOLATHE + materials = list(MAT_METAL=300, MAT_GLASS=100) + build_path = /obj/item/disk/data + category = list("Miscellaneous")