From 8f6bf394ee0e1f6d75c079a7cf09b26f4561254c Mon Sep 17 00:00:00 2001 From: Kabra_men <46802162+Kabramen@users.noreply.github.com> Date: Tue, 11 May 2021 15:09:03 -0300 Subject: [PATCH] Latex bodysuits and sleeves for loadout --- .../code/modules/client/loadout/gloves.dm | 8 +++++++- .../code/modules/client/loadout/uniform.dm | 12 ++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) 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