From 7559f04e326618b7d0c7a11fce8d3584f2283977 Mon Sep 17 00:00:00 2001 From: matttheficus <57759731+matttheficus@users.noreply.github.com> Date: Fri, 2 Jun 2023 13:27:49 -0400 Subject: [PATCH] Paramedic Tweaks (and Tiny CMO Tweak) (#21129) * life saving care for the paramedic * oops forgot the toolbox --- code/game/jobs/job/medical_jobs.dm | 4 ++-- .../crates_lockers/closets/secure/medical_lockers.dm | 8 +++++++- code/modules/clothing/spacesuits/misc_spacesuits.dm | 2 ++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/code/game/jobs/job/medical_jobs.dm b/code/game/jobs/job/medical_jobs.dm index d415c8c20cf..d5e00a477bc 100644 --- a/code/game/jobs/job/medical_jobs.dm +++ b/code/game/jobs/job/medical_jobs.dm @@ -284,8 +284,8 @@ supervisors = "the chief medical officer" department_head = list("Chief Medical Officer") selection_color = "#ffeef0" - access = list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_MORGUE) - minimal_access=list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_MORGUE) + access = list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_EVA, ACCESS_MORGUE) + minimal_access=list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_EVA, ACCESS_MORGUE) minimal_player_age = 3 exp_map = list(EXP_TYPE_CREW = 180) outfit = /datum/outfit/job/paramedic diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical_lockers.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical_lockers.dm index 0b69c0217d0..880f14e358d 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/medical_lockers.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/medical_lockers.dm @@ -41,7 +41,7 @@ /obj/structure/closet/secure_closet/medical3 name = "medical doctor's locker" - req_access = list(ACCESS_SURGERY) + req_access = list(ACCESS_MEDICAL) icon_state = "med_secure" open_door_sprite = "white_secure_door" @@ -149,6 +149,7 @@ new /obj/item/defibrillator/compact/advanced/loaded(src) new /obj/item/handheld_defibrillator(src) new /obj/item/storage/belt/medical(src) + new /obj/item/clothing/glasses/hud/health(src) new /obj/item/flash(src) new /obj/item/gun/syringe(src) new /obj/item/reagent_containers/hypospray/CMO(src) @@ -200,6 +201,11 @@ new /obj/item/key/ambulance(src) new /obj/item/pinpointer/crew(src) new /obj/item/handheld_defibrillator(src) + new /obj/item/defibrillator/loaded(src) + new /obj/item/storage/belt/medical(src) + new /obj/item/storage/firstaid/adv(src) + new /obj/item/clothing/glasses/hud/health(src) + new /obj/item/storage/toolbox/emergency(src) /obj/structure/closet/secure_closet/reagents name = "chemical storage closet" diff --git a/code/modules/clothing/spacesuits/misc_spacesuits.dm b/code/modules/clothing/spacesuits/misc_spacesuits.dm index 2ce16d78650..cb0e4f66b20 100644 --- a/code/modules/clothing/spacesuits/misc_spacesuits.dm +++ b/code/modules/clothing/spacesuits/misc_spacesuits.dm @@ -180,6 +180,8 @@ icon_state = "paramedic-eva" item_state = "paramedic-eva" desc = "A brand new paramedic EVA suit. The nitrile seems a bit too thin to be space proof. Used for retrieving bodies in space." + slowdown = 0.25 + w_class = WEIGHT_CLASS_NORMAL sprite_sheets = list( "Vox" = 'icons/mob/clothing/species/vox/suit.dmi',