diff --git a/code/game/jobs/job/security.dm b/code/game/jobs/job/security.dm index 6015e5b439a..d741bcb234b 100644 --- a/code/game/jobs/job/security.dm +++ b/code/game/jobs/job/security.dm @@ -212,7 +212,7 @@ if(2) H.equip_or_collect(new /obj/item/weapon/storage/backpack/medic(H), slot_back) if(3) H.equip_or_collect(new /obj/item/weapon/storage/backpack/satchel_med(H), slot_back) if(4) H.equip_or_collect(new /obj/item/weapon/storage/backpack/satchel(H), slot_back) - H.equip_or_collect(new /obj/item/clothing/under/rank/medical(H), slot_w_uniform) + H.equip_or_collect(new /obj/item/clothing/under/rank/security/brigphys(H), slot_w_uniform) H.equip_or_collect(new /obj/item/clothing/suit/storage/fr_jacket(H), slot_wear_suit) H.equip_or_collect(new /obj/item/clothing/glasses/hud/health_advanced, slot_glasses) H.equip_or_collect(new /obj/item/clothing/shoes/white(H), slot_shoes) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index e85b6afe4fa..863be182e04 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -217,7 +217,7 @@ new /obj/item/weapon/storage/firstaid/o2(src) new /obj/item/weapon/storage/firstaid/toxin(src) new /obj/item/clothing/suit/storage/brigdoc(src) - new /obj/item/clothing/under/rank/medical(src) + new /obj/item/clothing/under/rank/security/brigphys(src) new /obj/item/clothing/shoes/white(src) new /obj/item/device/radio/headset/headset_sec/alt(src) return diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm index a0f6d97ad14..759a3636dff 100644 --- a/code/modules/clothing/under/jobs/security.dm +++ b/code/modules/clothing/under/jobs/security.dm @@ -142,4 +142,16 @@ desc = "A security suit decorated for those few with the dedication to achieve the position of Head of Security." icon_state = "hos_formal" item_state = "gy_suit" - _color = "hos_formal" \ No newline at end of file + _color = "hos_formal" + + +//Brig Physician +/obj/item/clothing/under/rank/security/brigphys + desc = "Jumpsuit for Brig Physician it has both medical and security protection." + name = "brig physician's jumpsuit" + icon_state = "brig_phys" + item_state = "brig_phys" + _color = "brig_phys" + permeability_coefficient = 0.50 + armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) + flags = ONESIZEFITSALL \ No newline at end of file diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index e1d6ebd6cf5..315d63a38dc 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 3bfc7146595..7b7dce1cf50 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ