Files
GS13NG/modular_citadel/code/modules/client/loadout/mask.dm
T
Timothy Teakettle c9051a6a08 adds polychromic clown outfit and mask (#15359)
* why

* polyclown

* outfit / loadout / etc

* its not pink what do you mean

* newline

* fixes

* test icon diffs
2022-02-18 14:38:50 -08:00

38 lines
917 B
Plaintext

/datum/gear/mask
category = LOADOUT_CATEGORY_MASK
slot = SLOT_WEAR_MASK
/datum/gear/mask/balaclava
name = "Balaclava"
path = /obj/item/clothing/mask/balaclava
/datum/gear/mask/moustache
name = "Fake moustache"
path = /obj/item/clothing/mask/fakemoustache
/datum/gear/mask/joy
name = "Joy mask"
path = /obj/item/clothing/mask/joy
cost = 3
/datum/gear/mask/gas
name = "Gas Mask"
path = /obj/item/clothing/mask/gas
cost = 2
restricted_roles = list("Chief Engineer", "Atmospheric Technician", "Station Engineer") //*shrug
/datum/gear/mask/sterile
name = "Aesthetic sterile mask"
path = /obj/item/clothing/mask/surgical/aesthetic
cost = 2
/datum/gear/mask/paper
name = "Paper mask"
path = /obj/item/clothing/mask/paper
cost = 2
/datum/gear/mask/polychromic_clown
name = "polychromic clown wig and mask"
path = /obj/item/clothing/mask/gas/clown_hat_polychromic
restricted_roles = list("Clown")