diff --git a/code/game/objects/items/devices/portable_chem_mixer.dm b/code/game/objects/items/devices/portable_chem_mixer.dm index 56955ee97f8..01bbd3d47e3 100644 --- a/code/game/objects/items/devices/portable_chem_mixer.dm +++ b/code/game/objects/items/devices/portable_chem_mixer.dm @@ -3,6 +3,7 @@ desc = "A portable device that dispenses and mixes chemicals. Requires a vortex anomaly core. All necessary reagents need to be supplied with beakers. A label indicates that a screwdriver is required to open it for refills. This device can be worn on a belt. The letters 'S&T' are imprinted on the side." icon = 'icons/obj/chemical.dmi' icon_state = "portablechemicalmixer_open" + worn_icon_state = "portable_chem_mixer" w_class = WEIGHT_CLASS_HUGE slot_flags = ITEM_SLOT_BELT equip_sound = 'sound/items/equip/toolbelt_equip.ogg' diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm index 0cc2aec899c..76bf10f1c0a 100644 --- a/code/game/objects/items/storage/bags.dm +++ b/code/game/objects/items/storage/bags.dm @@ -102,6 +102,7 @@ desc = "This little bugger can be used to store and transport ores." icon = 'icons/obj/mining.dmi' icon_state = "satchel" + worn_icon_state = "satchel" slot_flags = ITEM_SLOT_BELT | ITEM_SLOT_POCKETS w_class = WEIGHT_CLASS_NORMAL component_type = /datum/component/storage/concrete/stack @@ -188,6 +189,7 @@ name = "plant bag" icon = 'icons/obj/hydroponics/equipment.dmi' icon_state = "plantbag" + worn_icon_state = "plantbag" resistance_flags = FLAMMABLE /obj/item/storage/bag/plants/ComponentInitialize() @@ -230,6 +232,7 @@ desc = "A patented Nanotrasen storage system designed for any kind of mineral sheet." icon = 'icons/obj/mining.dmi' icon_state = "sheetsnatcher" + worn_icon_state = "satchel" var/capacity = 300; //the number of sheets it can carry. component_type = /datum/component/storage/concrete/stack @@ -271,6 +274,7 @@ desc = "A bag for books." icon = 'icons/obj/library.dmi' icon_state = "bookbag" + worn_icon_state = "bookbag" resistance_flags = FLAMMABLE /obj/item/storage/bag/books/ComponentInitialize() @@ -361,6 +365,7 @@ name = "chemistry bag" icon = 'icons/obj/chemical.dmi' icon_state = "bag" + worn_icon_state = "chembag" desc = "A bag for storing pills, patches, and bottles." resistance_flags = FLAMMABLE @@ -389,6 +394,7 @@ name = "bio bag" icon = 'icons/obj/chemical.dmi' icon_state = "biobag" + worn_icon_state = "biobag" desc = "A bag for the safe transportation and disposal of biowaste and other biological materials." resistance_flags = FLAMMABLE @@ -420,6 +426,7 @@ name = "construction bag" icon = 'icons/obj/tools.dmi' icon_state = "construction_bag" + worn_icon_state = "construction_bag" desc = "A bag for storing small construction components." resistance_flags = FLAMMABLE diff --git a/code/modules/station_goals/dna_vault.dm b/code/modules/station_goals/dna_vault.dm index 7f2f73aea00..eed291b61be 100644 --- a/code/modules/station_goals/dna_vault.dm +++ b/code/modules/station_goals/dna_vault.dm @@ -63,10 +63,10 @@ name = "DNA Sampler" desc = "Can be used to take chemical and genetic samples of pretty much anything." icon = 'icons/obj/syringe.dmi' - inhand_icon_state = "hypo" + inhand_icon_state = "sampler" lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi' - icon_state = "hypo" + icon_state = "sampler" item_flags = NOBLUDGEON var/list/animals = list() var/list/plants = list() diff --git a/icons/mob/clothing/belt.dmi b/icons/mob/clothing/belt.dmi index 9da6471842b..0f0afb12639 100644 Binary files a/icons/mob/clothing/belt.dmi and b/icons/mob/clothing/belt.dmi differ diff --git a/icons/mob/inhands/equipment/medical_lefthand.dmi b/icons/mob/inhands/equipment/medical_lefthand.dmi index a1e711eee38..2e05ca17cd9 100644 Binary files a/icons/mob/inhands/equipment/medical_lefthand.dmi and b/icons/mob/inhands/equipment/medical_lefthand.dmi differ diff --git a/icons/mob/inhands/equipment/medical_righthand.dmi b/icons/mob/inhands/equipment/medical_righthand.dmi index ff4060e4284..a570a3cd189 100644 Binary files a/icons/mob/inhands/equipment/medical_righthand.dmi and b/icons/mob/inhands/equipment/medical_righthand.dmi differ diff --git a/icons/obj/syringe.dmi b/icons/obj/syringe.dmi index f5dadf52566..9d47e452af0 100644 Binary files a/icons/obj/syringe.dmi and b/icons/obj/syringe.dmi differ