Merge pull request #8441 from Cerebulon/hairnets

Adds Hairnets
This commit is contained in:
Spookerton
2022-04-01 18:32:33 +01:00
committed by GitHub
8 changed files with 19 additions and 1 deletions

View File

@@ -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)
/*

View File

@@ -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

View File

@@ -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/helmet.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")