From 72e4e94ec2c5f67f21dea6eb3c7b03bfc96b7bd0 Mon Sep 17 00:00:00 2001 From: anconfuzedrock Date: Sun, 19 Feb 2023 08:37:47 -0500 Subject: [PATCH] Allows unathi to take modified evening gloves and colorable leather gloves (#15837) --- .../loadout/loadout_xeno/unathi.dm | 16 ++++++++++++++++ code/modules/clothing/gloves/color.dm | 9 +++++++++ html/changelogs/anconfuzedrock-unatgloves.yml | 7 +++++++ 3 files changed, 32 insertions(+) create mode 100644 html/changelogs/anconfuzedrock-unatgloves.yml diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm b/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm index 79c042c4e63..87de4c2f5d0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm @@ -69,6 +69,22 @@ un_gloves["black leather gloves"] = /obj/item/clothing/gloves/black_leather/unathi gear_tweaks += new /datum/gear_tweak/path(un_gloves) +/datum/gear/gloves/unathi_full_leather + display_name = "full leather gloves (colourable)" + path = /obj/item/clothing/gloves/black_leather/colour/unathi + cost = 1 + whitelisted = list(SPECIES_UNATHI) + sort_category = "Xenowear - Unathi" + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + +/datum/gear/gloves/unathi_evening + display_name = "evening gloves" + path = /obj/item/clothing/gloves/evening/unathi + cost = 1 + whitelisted = list(SPECIES_UNATHI) + sort_category = "Xenowear - Unathi" + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + /datum/gear/gloves/unathi_handwraps display_name = "cloth handwraps" path = /obj/item/clothing/gloves/unathi diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index b80a1b8f6a0..84a07eee25c 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -162,6 +162,11 @@ desc = "A pair of gloves that reach past the elbow." icon_state = "evening_gloves" +/obj/item/clothing/gloves/evening/unathi + name = "evening gloves" + desc = "A pair of gloves that reach past the elbow. These ones are designed for Unathi." + species_restricted = list(BODYTYPE_UNATHI) + /obj/item/clothing/gloves/black_leather name = "black leather gloves" desc = "A pair of tight-fitting synthleather gloves." @@ -177,6 +182,10 @@ icon_state = "full_leather_colour" item_state = "full_leather_colour" +/obj/item/clothing/gloves/black_leather/colour/unathi + species_restricted = list(BODYTYPE_UNATHI) + desc = "Leather gloves made for Unathi use." + /obj/item/clothing/gloves/fingerless name = "fingerless gloves" desc = "A pair of gloves that don't actually cover the fingers." diff --git a/html/changelogs/anconfuzedrock-unatgloves.yml b/html/changelogs/anconfuzedrock-unatgloves.yml new file mode 100644 index 00000000000..dab36bc41e2 --- /dev/null +++ b/html/changelogs/anconfuzedrock-unatgloves.yml @@ -0,0 +1,7 @@ + +author: anconfuzedrock + +delete-after: True +changes: + - rscadd: "Modified evening gloves and colorable gloves are now available for unathi." +