Skip to content

Commit

Permalink
Merge pull request #421 from KoboldCommando/Printable-Beds
Browse files Browse the repository at this point in the history
Allows printing of bodybags and rollerbeds
  • Loading branch information
dwasint authored Oct 7, 2023
2 parents d003b31 + 08400a5 commit f0d3195
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions code/modules/research/designs/medical_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
2 changes: 2 additions & 0 deletions code/modules/research/techweb/all_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"basic_micro_laser",
"basic_scanning",
"blast",
"bodybag",
"bounced_radio",
"bowl",
"bucket",
Expand Down Expand Up @@ -92,6 +93,7 @@
"recorder",
"rglass",
"roll",
"rollerbed",
"sec_38",
"sec_beanbag_slug",
"sec_dart",
Expand Down

0 comments on commit f0d3195

Please sign in to comment.