diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 98a649ecedc..7b6d451c0f9 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -34,8 +34,7 @@ /obj/item/stack/medical/gauze = 1, /obj/item/stack/medical/bruise_pack = 2, /obj/item/stack/medical/ointment = 2, - /obj/item/reagent_containers/hypospray/medipen = 1, - /obj/item/healthanalyzer = 1) + /obj/item/reagent_containers/hypospray/medipen = 1) generate_items_inside(items_inside,src) /obj/item/storage/firstaid/medical @@ -107,11 +106,11 @@ /obj/item/stack/medical/bruise_pack = 2, /obj/item/stack/medical/ointment = 2, /obj/item/reagent_containers/hypospray/medipen = 1, - /obj/item/healthanalyzer = 1, /obj/item/surgical_drapes = 1, /obj/item/scalpel = 1, /obj/item/hemostat = 1, - /obj/item/cautery = 1) + /obj/item/cautery = 1, + /obj/item/healthanalyzer = 1) generate_items_inside(items_inside,src) /obj/item/storage/firstaid/ancient @@ -149,8 +148,7 @@ /obj/item/reagent_containers/pill/patch/aiuri = 3, /obj/item/reagent_containers/spray/rhigoxane = 1, /obj/item/reagent_containers/hypospray/medipen/oxandrolone = 1, - /obj/item/reagent_containers/hypospray/medipen = 1, - /obj/item/healthanalyzer = 1) + /obj/item/reagent_containers/hypospray/medipen = 1) generate_items_inside(items_inside,src) /obj/item/storage/firstaid/toxin @@ -175,8 +173,7 @@ /obj/item/storage/pill_bottle/multiver/less = 1, /obj/item/reagent_containers/syringe/syriniver = 3, /obj/item/storage/pill_bottle/potassiodide = 1, - /obj/item/reagent_containers/hypospray/medipen/penacid = 1, - /obj/item/healthanalyzer = 1) + /obj/item/reagent_containers/hypospray/medipen/penacid = 1) generate_items_inside(items_inside,src) /obj/item/storage/firstaid/o2 @@ -201,8 +198,7 @@ /obj/item/reagent_containers/syringe/convermol = 3, /obj/item/reagent_containers/hypospray/medipen/salbutamol = 1, /obj/item/reagent_containers/hypospray/medipen = 1, - /obj/item/storage/pill_bottle/iron = 1, - /obj/item/healthanalyzer = 1) + /obj/item/storage/pill_bottle/iron = 1) generate_items_inside(items_inside,src) /obj/item/storage/firstaid/brute @@ -227,8 +223,7 @@ /obj/item/reagent_containers/pill/patch/libital = 3, /obj/item/stack/medical/gauze = 1, /obj/item/storage/pill_bottle/trophazole = 1, - /obj/item/reagent_containers/hypospray/medipen/salacid = 1, - /obj/item/healthanalyzer = 1) + /obj/item/reagent_containers/hypospray/medipen/salacid = 1) generate_items_inside(items_inside,src) /obj/item/storage/firstaid/advanced diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 58731c49994..6deece3441a 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -488,15 +488,6 @@ category = list("initial", "Medical", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL | DEPARTMENTAL_FLAG_SERVICE -/datum/design/healthanalyzer - name = "Health Analyzer" - id = "healthanalyzer" - build_type = AUTOLATHE | PROTOLATHE - materials = list(/datum/material/iron = 500, /datum/material/glass = 50) - build_path = /obj/item/healthanalyzer - category = list("initial", "Medical", "Medical Designs") - departmental_flags = DEPARTMENTAL_FLAG_MEDICAL - /datum/design/pillbottle name = "Pill Bottle" id = "pillbottle" diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index 1b45d34d47a..ad41674f246 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -2,6 +2,15 @@ ////////////Medical Tools//////////////// ///////////////////////////////////////// +/datum/design/healthanalyzer + name = "Health Analyzer" + id = "healthanalyzer" + build_type = PROTOLATHE + materials = list(/datum/material/iron = 500, /datum/material/glass = 50) + build_path = /obj/item/healthanalyzer + category = list("Medical Designs") + departmental_flags = DEPARTMENTAL_FLAG_MEDICAL + /datum/design/mmi name = "Man-Machine Interface" desc = "The Warrior's bland acronym, MMI, obscures the true horror of this monstrosity."