diff --git a/code/modules/client/preference_setup/loadout/loadout_gloves.dm b/code/modules/client/preference_setup/loadout/loadout_gloves.dm index 4aa4ec8206a..83d7931aceb 100644 --- a/code/modules/client/preference_setup/loadout/loadout_gloves.dm +++ b/code/modules/client/preference_setup/loadout/loadout_gloves.dm @@ -58,7 +58,7 @@ /datum/gear/gloves/fingerless display_name = "fingerless gloves" - description = "A pair of gloves that don't actually cover the fingers. Available in classic black or recolourable white, with or without cutouts." + description = "Gloves that don't actually cover the fingers, useful for those who want to keep their hands warm without impeding touch or grip, or folks who have claws. Available in multiple variants; classic black or recolourable white, with or without cutouts, and extended or elbow-length." path = /obj/item/clothing/gloves/fingerless /datum/gear/gloves/fingerless/New() @@ -66,8 +66,12 @@ var/list/selector_uniforms = list( "black"=/obj/item/clothing/gloves/fingerless, "black, alt" =/obj/item/clothing/gloves/fingerless/alt, + "black, midlength" =/obj/item/clothing/gloves/fingerless/mid, + "black, long" =/obj/item/clothing/gloves/fingerless/long, "recolourable white"=/obj/item/clothing/gloves/fingerless_recolourable, - "recolourable, alt"=/obj/item/clothing/gloves/fingerless_recolourable/alt + "recolourable, alt"=/obj/item/clothing/gloves/fingerless_recolourable/alt, + "recolourable, midlength"=/obj/item/clothing/gloves/fingerless_recolourable/mid, + "recolourable, long"=/obj/item/clothing/gloves/fingerless_recolourable/long ) gear_tweaks += new/datum/gear_tweak/path(sortAssoc(selector_uniforms)) gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index 21d10a47ea3..d69aaa853ca 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -94,6 +94,16 @@ /obj/item/clothing/gloves/fingerless/alt icon_state = "fingerlessgloves_alt" +/obj/item/clothing/gloves/fingerless/mid + desc = "A pair of gloves that don't actually cover the fingers. These ones go about halfway up the forearm!" + name = "long fingerless gloves" + icon_state = "fingerlessmid_black" + +/obj/item/clothing/gloves/fingerless/long + desc = "A pair of gloves that don't actually cover the fingers. These ones go most of the way to the elbow!" + name = "elbow-length fingerless gloves" + icon_state = "fingerlesslong_black" + /obj/item/clothing/gloves/fingerless_recolourable desc = "A pair of gloves that don't actually cover the fingers." name = "fingerless gloves" @@ -102,3 +112,13 @@ /obj/item/clothing/gloves/fingerless_recolourable/alt icon_state = "fingerlessgloves_rc_alt" + +/obj/item/clothing/gloves/fingerless_recolourable/mid + desc = "A pair of gloves that don't actually cover the fingers. These ones go about halfway up the forearm!" + name = "long fingerless gloves" + icon_state = "fingerlessmid_white" + +/obj/item/clothing/gloves/fingerless_recolourable/long + desc = "A pair of gloves that don't actually cover the fingers. These ones go most of the way to the elbow!" + name = "elbow-length fingerless gloves" + icon_state = "fingerlesslong_white" diff --git a/icons/inventory/hands/item.dmi b/icons/inventory/hands/item.dmi index de8231af621..af7c15ca501 100644 Binary files a/icons/inventory/hands/item.dmi and b/icons/inventory/hands/item.dmi differ diff --git a/icons/inventory/hands/mob.dmi b/icons/inventory/hands/mob.dmi index 03fea15c429..cb16f3164eb 100644 Binary files a/icons/inventory/hands/mob.dmi and b/icons/inventory/hands/mob.dmi differ