diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index ca7b23004ec8..c6f38eb3c13f 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -106,6 +106,30 @@ ) departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_SCIENCE +/datum/design/rollerbed + name = "Roller Bed" + desc = "For the modern coma patient on the go! Much better than dragging a bleeding person along the floor." + id = "rollerbed" + build_type = PROTOLATHE | AWAY_LATHE + materials = list(/datum/material/iron = 3000) + build_path = /obj/item/roller/ + category = list( + RND_CATEGORY_EQUIPMENT + RND_SUBCATEGORY_TOOLS_MEDICAL + ) + departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_SCIENCE + +/datum/design/bodybag + name = "Body Bag" + desc = "A bag for a body. For when the doctors couldn't get to them, or after they're done." + id = "bodybag" + build_type = PROTOLATHE | AWAY_LATHE + materials = list(/datum/material/plastic = 1000) + build_path = /obj/item/bodybag + category = list( + RND_CATEGORY_EQUIPMENT + RND_SUBCATEGORY_TOOLS_MEDICAL + ) + departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_SCIENCE + /datum/design/bluespacebodybag name = "Bluespace Body Bag" desc = "A bluespace body bag, powered by experimental bluespace technology. It can hold loads of bodies and the largest of creatures." diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index 0bb2247cb05a..5de5ffa07f7c 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -15,6 +15,7 @@ "basic_micro_laser", "basic_scanning", "blast", + "bodybag", "bounced_radio", "bowl", "bucket", @@ -92,6 +93,7 @@ "recorder", "rglass", "roll", + "rollerbed", "sec_38", "sec_beanbag_slug", "sec_dart",