diff --git a/code/defines/obj/storage.dm b/code/defines/obj/storage.dm index 72e5bb68023..7fc61bb09ea 100644 --- a/code/defines/obj/storage.dm +++ b/code/defines/obj/storage.dm @@ -542,3 +542,45 @@ desc = "It has a picture of drinking glasses on it." icon_state = "box" item_state = "syringe_kit" + +// Belt Bags/Satchels + +/obj/item/weapon/storage/backpack/satchel_norm + name = "satchel" + desc = "A trendy looking satchel." + icon_state = "satchel-norm" + +/obj/item/weapon/storage/backpack/satchel_eng + name = "industrial satchel" + desc = "A tough satchel with extra pockets." + icon_state = "satchel-eng" + +/obj/item/weapon/storage/backpack/satchel_med + name = "medical satchel" + desc = "A sterile satchel used in medical departments." + icon_state = "satchel-med" + +/obj/item/weapon/storage/backpack/satchel_vir + name = "virologist satchel" + desc = "A sterile satchel with virologist colours." + icon_state = "satchel-vir" + +/obj/item/weapon/storage/backpack/satchel_chem + name = "chemist satchel" + desc = "A sterile satchel with chemist colours." + icon_state = "satchel-chem" + +/obj/item/weapon/storage/backpack/satchel_gen + name = "geneticist satchel" + desc = "A sterile satchel with geneticist colours." + icon_state = "satchel-gen" + +/obj/item/weapon/storage/backpack/satchel_tox + name = "scientist satchel" + desc = "Useful for holding research materials." + icon_state = "satchel-tox" + +/obj/item/weapon/storage/backpack/satchel_sec + name = "security satchel" + desc = "A robust satchel for security related needs." + icon_state = "satchel-sec" diff --git a/code/modules/clothing/jumpsuit.dm b/code/modules/clothing/jumpsuit.dm index 9b55019be90..e8a380e4568 100644 --- a/code/modules/clothing/jumpsuit.dm +++ b/code/modules/clothing/jumpsuit.dm @@ -182,7 +182,7 @@ /obj/item/clothing/under/rank/chemist desc = "Made of a special fiber that gives special protection against biohazards. Has a chemist rank stripe on it." name = "Chemist Jumpsuit" - icon_state = "genetics" + icon_state = "chemistry" item_state = "w_suit" color = "chemistrywhite" permeability_coefficient = 0.50 diff --git a/icons/mob/back.dmi b/icons/mob/back.dmi index 6c9c65aa09b..226d157a927 100644 Binary files a/icons/mob/back.dmi and b/icons/mob/back.dmi differ diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index a65badb4406..5cbde384d47 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ