diff --git a/code/game/machinery/vendors/wardrobe_vendors.dm b/code/game/machinery/vendors/wardrobe_vendors.dm index a084cd4b17e..3f15c7f97c5 100644 --- a/code/game/machinery/vendors/wardrobe_vendors.dm +++ b/code/game/machinery/vendors/wardrobe_vendors.dm @@ -568,6 +568,7 @@ /obj/item/clothing/suit/apron = 3, /obj/item/clothing/suit/apron/overalls = 3, /obj/item/clothing/suit/hooded/wintercoat/hydro = 3, + /obj/item/clothing/suit/storage/labcoat/hydro = 3, /obj/item/clothing/mask/bandana/botany = 3, /obj/item/clothing/accessory/armband/hydro = 3, /obj/item/storage/backpack/botany = 2, @@ -579,6 +580,7 @@ /obj/item/clothing/suit/apron = 50, /obj/item/clothing/suit/apron/overalls = 50, /obj/item/clothing/suit/hooded/wintercoat/hydro = 75, + /obj/item/clothing/suit/storage/labcoat/hydro = 75, /obj/item/clothing/mask/bandana/botany = 20, /obj/item/clothing/accessory/armband/hydro = 20, /obj/item/storage/backpack/botany = 50, diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index 473cdae589d..e6c574897b0 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -87,3 +87,10 @@ desc = "More purple than the standard model." icon_state = "labcoat_rd_open" item_state = "labcoat_rd_open" + +/obj/item/clothing/suit/storage/labcoat/hydro + name = "hydroponics labcoat" + desc = "A blue suit that protects against minor chemical spills. Has a green stripe on the shoulder." + icon_state = "labcoat_hydro_open" + item_state = "labcoat_hydro_open" + allowed = list(/obj/item/plant_analyzer, /obj/item/reagent_containers/glass/bottle, /obj/item/storage/bag/plants, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/glass/beaker, /obj/item/paper) diff --git a/icons/mob/clothing/species/grey/suit.dmi b/icons/mob/clothing/species/grey/suit.dmi index c836529cf83..10a51712fcc 100644 Binary files a/icons/mob/clothing/species/grey/suit.dmi and b/icons/mob/clothing/species/grey/suit.dmi differ diff --git a/icons/mob/clothing/species/vox/suit.dmi b/icons/mob/clothing/species/vox/suit.dmi index dd9269c4128..9e1b7352832 100644 Binary files a/icons/mob/clothing/species/vox/suit.dmi and b/icons/mob/clothing/species/vox/suit.dmi differ diff --git a/icons/mob/clothing/suit.dmi b/icons/mob/clothing/suit.dmi index 75ba7e02374..07646d15de5 100644 Binary files a/icons/mob/clothing/suit.dmi and b/icons/mob/clothing/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 999aae14dd5..f179ee7e660 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ