mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-19 22:02:24 +00:00
Adds snoods to the mask loadout. Adhomai is returning and I couldn't help myself. Images because I've learned my lesson    
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
// Mask
|
|
/datum/gear/mask
|
|
display_name = "dust mask"
|
|
path = /obj/item/clothing/mask/dust
|
|
slot = slot_wear_mask
|
|
sort_category = "Masks"
|
|
|
|
/datum/gear/mask/surgical
|
|
display_name = "surgical mask selection"
|
|
path = /obj/item/clothing/mask/surgical
|
|
|
|
/datum/gear/mask/surgical/New()
|
|
..()
|
|
var/list/masks = list()
|
|
masks["surgical mask"] = /obj/item/clothing/mask/surgical
|
|
masks["surgical mask, white"] = /obj/item/clothing/mask/surgical/w
|
|
gear_tweaks += new /datum/gear_tweak/path(masks)
|
|
|
|
/datum/gear/mask/cloth
|
|
display_name = "cloth mask"
|
|
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
|
|
flags = GEAR_HAS_DESC_SELECTION
|
|
origin_restriction = list(/singleton/origin_item/origin/gadpathur)
|