diff --git a/code/datums/components/crafting/recipes/recipes_clothing.dm b/code/datums/components/crafting/recipes/recipes_clothing.dm index df0a2a091a..75d00bbfcd 100644 --- a/code/datums/components/crafting/recipes/recipes_clothing.dm +++ b/code/datums/components/crafting/recipes/recipes_clothing.dm @@ -52,7 +52,7 @@ /datum/crafting_recipe/armwraps name = "Armwraps" - result = /obj/item/clothing/gloves/fingerless/pugilist + result = /obj/item/clothing/gloves/fingerless/pugilist/crafted time = 60 tools = list(TOOL_WIRECUTTER) reqs = list(/obj/item/stack/sheet/cloth = 4, diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index a337439931..86468a0269 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -76,6 +76,18 @@ if(!silent) to_chat(user, "With [src] off of your arms, you feel less ready to punch things.") +/obj/item/clothing/gloves/fingerless/pugilist/crafted + unique_reskin = list("Short" = "armwraps", + "Extended" = "armwraps_extended" + ) + +/obj/item/clothing/gloves/fingerless/pugilist/crafted/reskin_obj(mob/M) + . = ..() + if(icon_state == "armwraps_extended") + item_state = "armwraps_extended" + else + return + /obj/item/clothing/gloves/fingerless/pugilist/chaplain name = "armwraps of unyielding resolve" desc = "A series of armwraps, soaked in holy water. Makes you pretty keen to smite evil magic users." diff --git a/icons/mob/clothing/hands.dmi b/icons/mob/clothing/hands.dmi index 5155f06134..556bc4fd9d 100644 Binary files a/icons/mob/clothing/hands.dmi and b/icons/mob/clothing/hands.dmi differ diff --git a/icons/obj/clothing/gloves.dmi b/icons/obj/clothing/gloves.dmi index 25cde38df9..9df096d19b 100644 Binary files a/icons/obj/clothing/gloves.dmi and b/icons/obj/clothing/gloves.dmi differ