diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm index 4f73d4151c..4af4768a10 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -45,6 +45,7 @@ /obj/item/weapon/storage/box/mousetraps = 2, /obj/item/clothing/under/rank/chef, /obj/item/clothing/head/chefhat, + /obj/item/clothing/head/surgery/hairnet = 2, /obj/item/weapon/storage/bag/food = 2) /* diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 67bfd7c7de..9238f82a09 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -365,6 +365,14 @@ cap_type["Navy cap"] = /obj/item/clothing/head/surgery/navyblue gear_tweaks += new/datum/gear_tweak/path(cap_type) +/datum/gear/head/hairnet + display_name = "hairnet (colorable)" + path = /obj/item/clothing/head/surgery/hairnet + +/datum/gear/head/hairnet/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /datum/gear/head/circuitry display_name = "headwear, circuitry (empty)" path = /obj/item/clothing/head/circuitry diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index da22b29f1f..56912ae0a3 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -5,6 +5,15 @@ desc = "It's a hat used by chefs to keep hair out of your food. Judging by the food in the mess, they don't work." icon_state = "chefhat" +/obj/item/clothing/head/surgery/hairnet + name = "hairnet" + desc = "A hairnet used to keep the hair out of the way and out of the food." + icon_state = "hairnet" + item_state = "hairnet" + sprite_sheets = list( + SPECIES_TAJARAN = 'icons/mob/species/tajaran/head.dmi' + ) + //Captain /obj/item/clothing/head/caphat name = "site manager's hat" @@ -207,4 +216,4 @@ /obj/item/clothing/head/surgery/navyblue desc = "A cap surgeons wear during operations. Keeps their hair from tickling your internal organs. This one is navy blue." icon_state = "surgcap_navyblue" - item_state_slots = list(slot_r_hand_str = "beret_navy", slot_l_hand_str = "beret_navy") + item_state_slots = list(slot_r_hand_str = "beret_navy", slot_l_hand_str = "beret_navy") \ No newline at end of file diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 48d2844035..bea5bd3461 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/items/lefthand_hats.dmi b/icons/mob/items/lefthand_hats.dmi index 6be64d7a7d..c564675447 100644 Binary files a/icons/mob/items/lefthand_hats.dmi and b/icons/mob/items/lefthand_hats.dmi differ diff --git a/icons/mob/items/righthand_hats.dmi b/icons/mob/items/righthand_hats.dmi index 8bf6d4155d..aaaa0d80d9 100644 Binary files a/icons/mob/items/righthand_hats.dmi and b/icons/mob/items/righthand_hats.dmi differ diff --git a/icons/mob/species/tajaran/helmet.dmi b/icons/mob/species/tajaran/helmet.dmi index 24901a33b3..65eed8e7b7 100644 Binary files a/icons/mob/species/tajaran/helmet.dmi and b/icons/mob/species/tajaran/helmet.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 08854bd391..1a65cdd903 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ