Files
Aurora.3/code/modules/client/preference_setup/loadout/loadout_mask.dm
Wowzewow (Wezzy) 01a06d1197 New masks (#7614)
Adds new sprites for sterile mask and breath masks.
Adds new colorable cloth mask for civillians and dust mask mostly for industrial jobs.

Masks have been move to their own tab in loadout - namely because they have an entire seperate file for them, but apparently haven't been coded in their own tab. Also, they should equip properly on spawn now.
2019-12-21 12:40:58 +02:00

28 lines
657 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/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
/datum/gear/mask/cloth/New()
..()
gear_tweaks += gear_tweak_free_color_choice