From 08400a599d9a9b67e2eacb11a2532e7441276abe Mon Sep 17 00:00:00 2001 From: KoboldCommando Date: Tue, 3 Oct 2023 20:09:33 -0400 Subject: [PATCH] Allows printing of bodybags and rollerbeds --- .../research/designs/medical_designs.dm | 24 +++++++++++++++++++ code/modules/research/techweb/all_nodes.dm | 2 ++ 2 files changed, 26 insertions(+) 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 fc756ff67def..af4cecc86998 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -16,6 +16,7 @@ "basic_scanning", "bepis", "blast", + "bodybag", "bounced_radio", "bowl", "bucket", @@ -93,6 +94,7 @@ "recorder", "rglass", "roll", + "rollerbed", "sec_38", "sec_beanbag_slug", "sec_dart",