[MIRROR] Add gas masks to the loadout options (#11586)

Co-authored-by: nesquik <24830358+lbnesquik@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-09-09 04:24:10 -07:00
committed by GitHub
parent c7826d29f7
commit ab33e72232
3 changed files with 10 additions and 12 deletions

View File

@@ -33,6 +33,16 @@
display_name = "cloth face mask" display_name = "cloth face mask"
path = /obj/item/clothing/mask/surgical/cloth path = /obj/item/clothing/mask/surgical/cloth
/datum/gear/mask/gas
display_name = "gas mask"
path = /obj/item/clothing/mask/gas
cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage.
/datum/gear/mask/gas/clear
display_name = "transparent gas mask"
path = /obj/item/clothing/mask/gas/clear
cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage.
/datum/gear/mask/plaguedoctor /datum/gear/mask/plaguedoctor
display_name = "plague doctor's mask" display_name = "plague doctor's mask"
path = /obj/item/clothing/mask/gas/plaguedoctor path = /obj/item/clothing/mask/gas/plaguedoctor

View File

@@ -1,11 +0,0 @@
/datum/gear/mask/gas //Greytide Worldwide
display_name = "Gas Mask"
description = "A dangerous gas filtering gas mask. Also conseals your face. Assistant's favorite."
path = /obj/item/clothing/mask/gas
cost = 3 //Plague Doctor's costs 3 due to mechanical advantage, so I'll use that here
/datum/gear/mask/gas_clear
display_name = "Gas Mask, Clear"
description = "A dangerous gas filtering gas mask. Doesn't conseal your face."
path = /obj/item/clothing/mask/gas/clear
cost = 3

View File

@@ -5077,7 +5077,6 @@
#include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_general.dm" #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_general.dm"
#include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_gloves_ch.dm" #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_gloves_ch.dm"
#include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_head.dm" #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_head.dm"
#include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_mask.dm"
#include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_shoes.dm" #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_shoes.dm"
#include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_suit.dm" #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_suit.dm"
#include "modular_chomp\code\modules\client\preferences\types\misc.dm" #include "modular_chomp\code\modules\client\preferences\types\misc.dm"