diff --git a/code/modules/client/preference_setup/loadout/items/mask.dm b/code/modules/client/preference_setup/loadout/items/mask.dm index 2cad1df2fcd..0185ff12854 100644 --- a/code/modules/client/preference_setup/loadout/items/mask.dm +++ b/code/modules/client/preference_setup/loadout/items/mask.dm @@ -21,6 +21,11 @@ path = /obj/item/clothing/mask/cloth flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION +/datum/gear/mask/snood + display_name = "snood" + path = /obj/item/clothing/mask/snood + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + /datum/gear/mask/gadpathur display_name = "gadpathurian rebreather" path = /obj/item/clothing/mask/breath/gadpathur diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 99ce771491c..77026e7ea46 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -185,3 +185,29 @@ item_state = "starveil" down_body_parts_covered = null adjustable = TRUE + +/obj/item/clothing/mask/snood + name = "snood" + desc = "A warm, cozy snood, for keeping your face and neck warm." + icon = 'icons/obj/item/clothing/mask/snood.dmi' + icon_state = "snood" + item_state = "snood" + contained_sprite = TRUE + w_class = ITEMSIZE_SMALL + body_parts_covered = FACE + item_flags = ITEM_FLAG_FLEXIBLE_MATERIAL + gas_transfer_coefficient = 0.90 + permeability_coefficient = 0.5 + armor = list( + bio = ARMOR_BIO_MINOR + ) + down_gas_transfer_coefficient = 1 + down_body_parts_covered = null + adjustable = TRUE + icon_auto_adapt = TRUE + sprite_sheets = list() + +/obj/item/clothing/mask/snood/Initialize() + . = ..() + if(icon_auto_adapt) + build_and_apply_species_adaption() diff --git a/html/changelogs/snoods.yml b/html/changelogs/snoods.yml new file mode 100644 index 00000000000..272edb207e4 --- /dev/null +++ b/html/changelogs/snoods.yml @@ -0,0 +1,6 @@ +author: Sparky_hotdog + +delete-after: True + +changes: + - rscadd: "Added snoods to the loadout, for even more warm winter wear." diff --git a/icons/obj/item/clothing/mask/snood.dmi b/icons/obj/item/clothing/mask/snood.dmi new file mode 100644 index 00000000000..525ed67c4b5 Binary files /dev/null and b/icons/obj/item/clothing/mask/snood.dmi differ