diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index c674695c07f..93102a2400b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -6,6 +6,14 @@ sort_category = "Suits and Overwear" cost = 2 +/datum/gear/suit/apron_white + display_name = "apron, colorable" + path = /obj/item/clothing/suit/storage/apron/white + +/datum/gear/suit/apron_white/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) + /datum/gear/suit/greatcoat display_name = "greatcoat" path = /obj/item/clothing/suit/greatcoat diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index 2a60cf94a94..ac6fa0e2cc2 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -350,3 +350,13 @@ display_name = "internal affairs cloak (Teshari)" path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/iaa allowed_roles = list("Internal Affairs Agent") + +/datum/gear/suit/labcoat_tesh + display_name = "labcoat, colorable (Teshari)" + path = /obj/item/clothing/suit/storage/toggle/labcoat/teshari + whitelisted = SPECIES_TESHARI + sort_category = "Xenowear" + +/datum/gear/suit/labcoat_tesh/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) diff --git a/code/modules/clothing/suits/aliens/seromi.dm b/code/modules/clothing/suits/aliens/seromi.dm index 2240c70ac80..f27ec3e8a75 100644 --- a/code/modules/clothing/suits/aliens/seromi.dm +++ b/code/modules/clothing/suits/aliens/seromi.dm @@ -237,4 +237,12 @@ name = "internal affairs cloak" desc = "A soft Teshari cloak made for the Internal Affairs Agent" icon_state = "tesh_cloak_iaa" - item_state = "tesh_cloak_iaa" \ No newline at end of file + item_state = "tesh_cloak_iaa" + +/obj/item/clothing/suit/storage/toggle/labcoat/teshari + name = "Teshari labcoat" + desc = "A small suit that protects against minor chemical spills. This one is a good fit on Teshari." + icon = 'icons/mob/species/seromi/suit.dmi' + icon_override = 'icons/mob/species/seromi/suit.dmi' + icon_state = "tesh_labcoat" + species_restricted = list(SPECIES_TESHARI) diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index 223fdbce8b5..49f5562835f 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -13,6 +13,12 @@ allowed = list (/obj/item/weapon/reagent_containers/spray/plantbgone, /obj/item/device/analyzer/plant_analyzer, /obj/item/seeds, /obj/item/weapon/reagent_containers/glass/bottle, /obj/item/weapon/material/minihoe) +/obj/item/clothing/suit/storage/apron/white + name = "white apron" + desc = "A basic white apron." + icon_state = "apron_white" + item_state_slots = list(slot_r_hand_str = "apronchef", slot_l_hand_str = "apronchef") + //Captain /obj/item/clothing/suit/captunic name = "colony director's parade tunic" diff --git a/icons/mob/species/seromi/suit.dmi b/icons/mob/species/seromi/suit.dmi index 53d515e73c1..fb3361dafd8 100644 Binary files a/icons/mob/species/seromi/suit.dmi and b/icons/mob/species/seromi/suit.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 6576a1b1727..13ed45334cf 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index cca8a98fdbd..ad2cf41c4d1 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ