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 43a00919ded..9880722840a 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -54,6 +54,8 @@ new /obj/item/storage/box/mousetraps(src) new /obj/item/clothing/under/rank/chef(src) new /obj/item/clothing/head/chefhat(src) + new /obj/item/clothing/head/surgery/hairnet(src) + new /obj/item/clothing/head/surgery/hairnet(src) /* * Janitor diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index ff21efa5e23..feed856e1a0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -349,6 +349,10 @@ path = /obj/item/clothing/head/dominia allowed_roles = list("Consular Officer") +/datum/gear/head/hairnet + display_name = "hairnet" + path = /obj/item/clothing/head/surgery/hairnet + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION /* Block Hair Adjustment diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index 233c7244119..7ed6b9658c7 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -5,6 +5,19 @@ icon_state = "chefhat" item_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( + "Tajara" = 'icons/mob/species/tajaran/helmet.dmi' + ) + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand.dmi', + slot_r_hand_str = 'icons/mob/items/righthand.dmi', + ) + //HOP /obj/item/clothing/head/caphat/hop name = "crew resource's hat" diff --git a/html/changelogs/Hairnets.yml b/html/changelogs/Hairnets.yml new file mode 100644 index 00000000000..aa3731bb710 --- /dev/null +++ b/html/changelogs/Hairnets.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Added hairnets. They can be found in the loadout under hats and headwear and in the chef's closet." diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 617ec7c0273..e28c502f490 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/items/lefthand.dmi b/icons/mob/items/lefthand.dmi index dfb40353c21..35a8194feca 100644 Binary files a/icons/mob/items/lefthand.dmi and b/icons/mob/items/lefthand.dmi differ diff --git a/icons/mob/items/righthand.dmi b/icons/mob/items/righthand.dmi index 7bc4f325d71..974c3f6859f 100644 Binary files a/icons/mob/items/righthand.dmi and b/icons/mob/items/righthand.dmi differ diff --git a/icons/mob/species/tajaran/helmet.dmi b/icons/mob/species/tajaran/helmet.dmi index cf808dfa0ea..ef76610e7fe 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 c3c61be6df6..cf3e5534230 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ