diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index ff47e531fda..35991ab6671 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -426,6 +426,14 @@ display_name = "black and gold headdress" path = /obj/item/clothing/head/blackngoldheaddress +/datum/gear/head/plaguedoctor + display_name = "plague doctor's hat" + path = /obj/item/clothing/head/plaguedoctorhat + /datum/gear/head/plaguedoctor2 display_name = "golden plague doctor's hat" - path = /obj/item/clothing/head/plaguedoctorhat/gold \ No newline at end of file + path = /obj/item/clothing/head/plaguedoctorhat/gold + +/datum/gear/head/wheat + display_name = "straw hat" + path = /obj/item/clothing/head/wheat \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_mask.dm b/code/modules/client/preference_setup/loadout/loadout_mask.dm index 7336f5e4f75..2c89ce66cb2 100644 --- a/code/modules/client/preference_setup/loadout/loadout_mask.dm +++ b/code/modules/client/preference_setup/loadout/loadout_mask.dm @@ -22,15 +22,20 @@ path = /obj/item/clothing/mask/surgical cost = 2 -/datum/gear/mask/veil - display_name = "black veil" - path = /obj/item/clothing/mask/veil +/datum/gear/mask/plaguedoctor + display_name = "plague doctor's mask" + path = /obj/item/clothing/mask/gas/plaguedoctor + cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage. /datum/gear/mask/plaguedoctor2 display_name = "golden plague doctor's mask" path = /obj/item/clothing/mask/gas/plaguedoctor/gold cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage. +/datum/gear/mask/mouthwheat + display_name = "mouth wheat" + path = /obj/item/clothing/mask/mouthwheat + /datum/gear/mask/papermask display_name = "paper mask" path = /obj/item/clothing/mask/paper diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index f6ff9119737..0351e16fcaf 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -112,7 +112,7 @@ /obj/item/clothing/head/plaguedoctorhat name = "plague doctor's hat" - desc = "These were once used by Plague doctors. They're pretty much useless." + desc = "These were once used by Plague doctors, allegedly. They're pretty much useless." icon_state = "plaguedoctor" item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") permeability_coefficient = 0.01 @@ -524,4 +524,9 @@ /obj/item/clothing/head/cowboy/small name = "small cowboy hat" desc = "For the tiniest of cowboys." - icon_state = "cowboy_small" \ No newline at end of file + icon_state = "cowboy_small" + +/obj/item/clothing/head/wheat + name = "straw hat" + desc = "It's a hat made from synthetic straw. Brought to you by \"Country Girls LLC.\" the choice brand for the galaxy's working class." + icon_state = "wheat" \ No newline at end of file diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index a73e6d7a732..e164234cee7 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -71,7 +71,7 @@ /obj/item/clothing/mask/gas/plaguedoctor/gold name = "gold plague doctor mask" - desc = "A modern version of the age old classic, this mask is both capable of filtering air, and connecting to an air supply. This one is gold." + desc = "A modernised version of the classic design, this mask will not only filter out phoron but it can also be connected to an air supply. This one is gold." icon_state = "plaguedoctor2" /obj/item/clothing/mask/gas/swat diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 5b94f947411..3a79b7177a9 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -387,4 +387,11 @@ /obj/item/clothing/mask/gaiter/green name = "green neck gaiter" - icon_state = "gaiter_green" \ No newline at end of file + icon_state = "gaiter_green" + +/obj/item/clothing/mask/mouthwheat + name = "mouth wheat" + desc = "100% synthetic \"Country Girls LLC.\" brand mouth wheat. Warning: not for actual consumption." + icon_state = "mouthwheat" + w_class = ITEMSIZE_SMALL + body_parts_covered = 0 \ No newline at end of file diff --git a/icons/inventory/face/item.dmi b/icons/inventory/face/item.dmi index 60cb749378a..0d18ec906ff 100644 Binary files a/icons/inventory/face/item.dmi and b/icons/inventory/face/item.dmi differ diff --git a/icons/inventory/face/item_vr.dmi b/icons/inventory/face/item_vr.dmi index c923555fe70..f959366a0f6 100644 Binary files a/icons/inventory/face/item_vr.dmi and b/icons/inventory/face/item_vr.dmi differ diff --git a/icons/inventory/face/mob.dmi b/icons/inventory/face/mob.dmi index 7c9363956cc..e7e5626fdea 100644 Binary files a/icons/inventory/face/mob.dmi and b/icons/inventory/face/mob.dmi differ diff --git a/icons/inventory/face/mob_teshari.dmi b/icons/inventory/face/mob_teshari.dmi index 9d9b6afb776..c8c4004ebd3 100644 Binary files a/icons/inventory/face/mob_teshari.dmi and b/icons/inventory/face/mob_teshari.dmi differ diff --git a/icons/inventory/face/mob_vr.dmi b/icons/inventory/face/mob_vr.dmi index fbac00cd0d1..6cb60f47c59 100644 Binary files a/icons/inventory/face/mob_vr.dmi and b/icons/inventory/face/mob_vr.dmi differ diff --git a/icons/inventory/face/mob_vr_teshari.dmi b/icons/inventory/face/mob_vr_teshari.dmi index 3914b57a133..5a549885c75 100644 Binary files a/icons/inventory/face/mob_vr_teshari.dmi and b/icons/inventory/face/mob_vr_teshari.dmi differ diff --git a/icons/inventory/head/item.dmi b/icons/inventory/head/item.dmi index 69c053540d8..3d4ec811211 100644 Binary files a/icons/inventory/head/item.dmi and b/icons/inventory/head/item.dmi differ diff --git a/icons/inventory/head/mob.dmi b/icons/inventory/head/mob.dmi index c75e89c28aa..ede13c4120d 100644 Binary files a/icons/inventory/head/mob.dmi and b/icons/inventory/head/mob.dmi differ