diff --git a/code/game/jobs/job/supervisor.dm b/code/game/jobs/job/supervisor.dm index feaf1c7972d..6a22935f7be 100644 --- a/code/game/jobs/job/supervisor.dm +++ b/code/game/jobs/job/supervisor.dm @@ -182,9 +182,9 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 0) /obj/item/gun/energy/gun/blueshield = 1 ) implants = list(/obj/item/implant/mindshield) - backpack = /obj/item/storage/backpack/security - satchel = /obj/item/storage/backpack/satchel_sec - dufflebag = /obj/item/storage/backpack/duffel/security + backpack = /obj/item/storage/backpack/blueshield + satchel = /obj/item/storage/backpack/satchel_blueshield + dufflebag = /obj/item/storage/backpack/duffel/blueshield /datum/job/judge diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 96806bb827a..91ad694336c 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -193,6 +193,12 @@ icon_state = "viropack" item_state = "viropack" +/obj/item/storage/backpack/blueshield + name = "blueshield backpack" + desc = "A robust backpack issued to Nanotrasen's finest." + icon_state = "blueshieldpack" + item_state = "blueshieldpack" + /* * Satchel Types */ @@ -287,6 +293,11 @@ icon_state = "satchel-cap" resistance_flags = FIRE_PROOF +/obj/item/storage/backpack/satchel_blueshield + name = "blueshield satchel" + desc = "A robust satchel issued to Nanotrasen's finest." + icon_state = "satchel-blueshield" + /obj/item/storage/backpack/satchel_flat name = "smuggler's satchel" desc = "A very slim satchel that can easily fit into tight spaces." @@ -531,6 +542,12 @@ icon_state = "duffel-clown" item_state = "duffel-clown" +obj/item/storage/backpack/duffel/blueshield + name = "blueshield duffelbag" + desc = "A robust duffelbag issued to Nanotrasen's finest." + icon_state = "duffel-blueshield" + item_state = "duffel-blueshield" + //ERT backpacks. /obj/item/storage/backpack/ert name = "emergency response team backpack" diff --git a/icons/mob/back.dmi b/icons/mob/back.dmi index 2e3c9f7cae0..8ac73bf20d6 100644 Binary files a/icons/mob/back.dmi and b/icons/mob/back.dmi differ diff --git a/icons/mob/inhands/clothing_lefthand.dmi b/icons/mob/inhands/clothing_lefthand.dmi index 69e602fc652..589135b8701 100644 Binary files a/icons/mob/inhands/clothing_lefthand.dmi and b/icons/mob/inhands/clothing_lefthand.dmi differ diff --git a/icons/mob/inhands/clothing_righthand.dmi b/icons/mob/inhands/clothing_righthand.dmi index 3b62b05b314..8fd5f7d71b8 100644 Binary files a/icons/mob/inhands/clothing_righthand.dmi and b/icons/mob/inhands/clothing_righthand.dmi differ diff --git a/icons/mob/species/vox/back.dmi b/icons/mob/species/vox/back.dmi index a2f488122df..a0a8445964a 100644 Binary files a/icons/mob/species/vox/back.dmi and b/icons/mob/species/vox/back.dmi differ diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index c9293cbb7a7..33274c3fdb2 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ