Files
CHOMPStation2/code/modules/client/preference_setup/loadout/loadout_mask.dm
CHOMPStation2StaffMirrorBot c31e50cf9c [MIRROR] Simple wrestling mask (#9972)
Co-authored-by: SatinIsle <98125273+SatinIsle@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2025-01-30 23:15:46 +01:00

97 lines
2.7 KiB
Plaintext

// Mask
/datum/gear/mask
display_name = "bandana, blue"
path = /obj/item/clothing/mask/bandana/blue
slot = slot_wear_mask
sort_category = "Masks and Facewear"
/datum/gear/mask/gold
display_name = "bandana, gold"
path = /obj/item/clothing/mask/bandana/gold
/datum/gear/mask/green
display_name = "bandana, green 2"
path = /obj/item/clothing/mask/bandana/green
/datum/gear/mask/red
display_name = "bandana, red"
path = /obj/item/clothing/mask/bandana/red
/datum/gear/mask/sterile
display_name = "sterile mask"
path = /obj/item/clothing/mask/surgical
cost = 2
/datum/gear/mask/sterile/white
display_name = "white sterile mask"
path = /obj/item/clothing/mask/surgical/white
cost = 2
/datum/gear/mask/sterile/white/dust
display_name = "dust mask"
path = /obj/item/clothing/mask/surgical/dust
/datum/gear/mask/sterile/white/cloth
display_name = "cloth face mask"
path = /obj/item/clothing/mask/surgical/cloth
/datum/gear/mask/plaguedoctor
display_name = "plague doctor's mask"
path = /obj/item/clothing/mask/gas/plaguedoctor
cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage.
/datum/gear/mask/plaguedoctor2
display_name = "golden plague doctor's mask"
path = /obj/item/clothing/mask/gas/plaguedoctor/gold
cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage.
/datum/gear/mask/mouthwheat
display_name = "mouth wheat"
path = /obj/item/clothing/mask/mouthwheat
/datum/gear/mask/papermask
display_name = "paper mask"
path = /obj/item/clothing/mask/paper
/datum/gear/mask/emotionalmask
display_name = "emotional mask"
path = /obj/item/clothing/mask/emotions
/datum/gear/mask/gaiter
display_name = "neck gaiter selection"
path = /obj/item/clothing/accessory/gaiter
cost = 1
//CHOMPAdd - Put this mask in loadout
/datum/gear/mask/death
display_name = "white mask"
path = /obj/item/clothing/mask/gas/cyborg
cost = 1
/datum/gear/mask/gaiter/New()
..()
var/list/gaiters = list()
for(var/gaiter in typesof(/obj/item/clothing/accessory/gaiter))
var/obj/item/clothing/accessory/gaiter_type = gaiter
gaiters[initial(gaiter_type.name)] = gaiter_type
gear_tweaks += new/datum/gear_tweak/path(sortTim(gaiters, GLOBAL_PROC_REF(cmp_text_asc)))
/datum/gear/mask/lace
display_name = "lace veil"
path = /obj/item/clothing/mask/lacemask
/datum/gear/mask/lace/New()
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/mask/half
display_name = "black half-mask"
path = /obj/item/clothing/accessory/gaiter/half
/datum/gear/mask/wrestling
display_name = "wrestling mask"
path = /obj/item/clothing/mask/luchador/colorable
cost = 1
/datum/gear/mask/wrestling/New()
gear_tweaks += gear_tweak_free_color_choice