From 30d360d9ab1d6f1e075c43fa773a579b6563dc34 Mon Sep 17 00:00:00 2001 From: Geatish <130587823+Geatish@users.noreply.github.com> Date: Tue, 3 Sep 2024 13:28:57 +0200 Subject: [PATCH] Makes Blood Packs printable from the med lathe (#11401) * Bloodbags in medlathe I will suck your blood oooooo also removed health analyzer from the hacked auto lathe * Added a description --- code/modules/research/designs/autolathe_designs.dm | 4 ++-- code/modules/research/designs/medical_designs.dm | 10 ++++++++++ code/modules/research/techweb/all_nodes.dm | 1 + 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index f05f5f0905c30..cace6ca4a9d10 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -546,10 +546,10 @@ /datum/design/healthanalyzer name = "Health Analyzer" id = "healthanalyzer" - build_type = AUTOLATHE | PROTOLATHE + build_type = PROTOLATHE materials = list(/datum/material/iron = 500, /datum/material/glass = 50) build_path = /obj/item/healthanalyzer - category = list("hacked", "Medical", "Medical Designs") + category = list("Medical", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL /datum/design/pillbottle diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index 33a66137b01e5..fb92bc2cbda16 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -62,6 +62,16 @@ build_path = /obj/item/reagent_containers/glass/beaker/meta category = list("Medical Designs") +/datum/design/blood_pack + name = "Blood Pack" + desc = "An empty pack for blood transfusions" + id = "blood_pack" + build_type = PROTOLATHE + departmental_flags = DEPARTMENTAL_FLAG_MEDICAL + materials = list(/datum/material/plastic = 500) + build_path = /obj/item/reagent_containers/blood + category = list("Medical Designs") + /datum/design/bluespacesyringe name = "Bluespace Syringe" desc = "An advanced syringe that can hold 60 units of chemicals" diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index 01e4fa09b090a..9d7cad9d579fe 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -252,6 +252,7 @@ "pandemic", "sleeper", "soda_dispenser", + "blood_pack", ) research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500) export_price = 5000