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 9e823c59d85..8acfbd5d10c 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -389,7 +389,7 @@ new /obj/item/clothing/under/det/classic(src) new /obj/item/clothing/accessory/badge/dia(src) new /obj/item/clothing/suit/storage/toggle/forensics(src) - new /obj/item/clothing/gloves/black(src) + new /obj/item/clothing/gloves/black/forensic(src) new /obj/item/clothing/shoes/brown(src) new /obj/item/clothing/shoes/laceup(src) //Tools diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 8a73ddc904a..dd9ba53f028 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -385,4 +385,11 @@ species_restricted = null slot_flags = SLOT_GLOVES|SLOT_WRISTS drop_sound = 'sound/items/drop/cloth.ogg' - pickup_sound = 'sound/items/pickup/cloth.ogg' \ No newline at end of file + pickup_sound = 'sound/items/pickup/cloth.ogg' + +/obj/item/clothing/gloves/black/forensic + name = "forensic gloves" + desc = "Specially made gloves for investigative personnel. The luminescent threads woven into the material stand out under scrutiny." + icon_state = "forensic" + item_state = "forensicgloves" + species_restricted = list("exclude",BODYTYPE_GOLEM,BODYTYPE_VAURCA_BREEDER,BODYTYPE_VAURCA_WARFORM) \ No newline at end of file diff --git a/html/changelogs/InvestigatorLife.yml b/html/changelogs/InvestigatorLife.yml new file mode 100644 index 00000000000..b6a454a876a --- /dev/null +++ b/html/changelogs/InvestigatorLife.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "The investigation team has been issued new improved gloves." diff --git a/icons/mob/hands.dmi b/icons/mob/hands.dmi index 2bd9d2a0e3d..fdaa5e2fc2f 100644 Binary files a/icons/mob/hands.dmi and b/icons/mob/hands.dmi differ diff --git a/icons/obj/clothing/gloves.dmi b/icons/obj/clothing/gloves.dmi index c04a7f78ea7..47ddd9ddadc 100644 Binary files a/icons/obj/clothing/gloves.dmi and b/icons/obj/clothing/gloves.dmi differ