diff --git a/modular_citadel/code/modules/client/loadout/gloves.dm b/modular_citadel/code/modules/client/loadout/gloves.dm index c02b298b..545df559 100644 --- a/modular_citadel/code/modules/client/loadout/gloves.dm +++ b/modular_citadel/code/modules/client/loadout/gloves.dm @@ -24,4 +24,10 @@ name = "A diamond ring" category = SLOT_GLOVES path = /obj/item/clothing/gloves/ring/diamond - cost = 4 \ No newline at end of file + cost = 4 + +/datum/gear/latexsleeves + name = "Latex sleeves" + category = SLOT_GLOVES + path = /obj/item/clothing/gloves/latexsleeves + cost = 1 \ No newline at end of file diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index 62a40d39..9653ce8a 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -496,3 +496,15 @@ path = /obj/item/clothing/under/greenplaidshirt cost = 1 ckeywhitelist = list("chemlight") + +/datum/gear/latexfull + name = "Full latex jumpsuit" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/latexfull + cost = 1 + +/datum/gear/latexhalf + name = "Latex bodysuit" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/latexhalf + cost = 1 \ No newline at end of file