From 798b10d28b665c5fd00ea21664b570b80121f98f Mon Sep 17 00:00:00 2001 From: loginsandylogout Date: Thu, 22 Mar 2018 23:48:58 -0500 Subject: [PATCH] more gloves --- .../code/modules/client/loadout/gloves.dm | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/client/loadout/gloves.dm b/modular_citadel/code/modules/client/loadout/gloves.dm index ec67fbc0ec..585eb56ace 100644 --- a/modular_citadel/code/modules/client/loadout/gloves.dm +++ b/modular_citadel/code/modules/client/loadout/gloves.dm @@ -1,4 +1,28 @@ /datum/gear/fingerless name = "Fingerless Gloves" category = slot_gloves - path = /obj/item/clothing/gloves/fingerless \ No newline at end of file + path = /obj/item/clothing/gloves/fingerless + +/datum/gear/glovesrainbow + name = "Rainbow gloves" + category = slot_gloves + path = /obj/item/clothing/gloves/color/rainbow + cost = 2 + +/datum/gear/glovesred + name = "Red gloves" + category = slot_gloves + path = /obj/item/clothing/gloves/color/red + cost = 2 + +/datum/gear/glovesblue + name = "Blue gloves" + category = slot_gloves + path = /obj/item/clothing/gloves/color/blue + cost = 2 + +/datum/gear/glovesgray + name = "Gray gloves" + category = slot_gloves + path = /obj/item/clothing/gloves/color/grey + cost = 2