Files
Aurora.3/code/modules/client/preference_setup/loadout/items/mask.dm
Cody Brittain 4be8285db0 Added a Gadpathurian rebreather, exclusive to Gadpathurians (#17642)
* Added a Gadpathurian rebreather, exclusive to Gadpathurians in the loadout.

* CL

---------

Co-authored-by: Cody Brittain <cbrittain10@live.com>
2023-10-27 14:02:43 +00:00

29 lines
886 B
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/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)