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 aa0adde915b..df1b9ee2b45 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm @@ -48,6 +48,14 @@ 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_handwraps + display_name = "cloth handwraps" + path = /obj/item/clothing/gloves/handwraps + 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/uniform/unathi display_name = "sinta tunic" path = /obj/item/clothing/under/unathi diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index 32e4ad11dc8..ddb2917c0c9 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -152,9 +152,9 @@ species_restricted = list(BODYTYPE_UNATHI) /obj/item/clothing/gloves/white/unathi - name = "white gloves" - desc = "White gloves made for Unathi use." - species_restricted = list(BODYTYPE_UNATHI) + name = "white gloves" + desc = "White gloves made for Unathi use." + species_restricted = list(BODYTYPE_UNATHI) /obj/item/clothing/gloves/rainbow/unathi name = "rainbow gloves" diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 5c1c92abb6f..8a73ddc904a 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -374,3 +374,15 @@ if(ismob(src.loc)) var/mob/M = src.loc M.update_inv_gloves() + +/obj/item/clothing/gloves/handwraps + name = "cloth handwraps" + desc = "A roll of treated cloth used for wrapping clawed hands. Its growing popularity among unathi can be attributed to the cheap nature of its production and the utility it may provide in a pinch." + icon = 'icons/obj/unathi_items.dmi' + icon_state = "handwrap" + item_state = "handwrap" + contained_sprite = TRUE + species_restricted = null + slot_flags = SLOT_GLOVES|SLOT_WRISTS + drop_sound = 'sound/items/drop/cloth.ogg' + pickup_sound = 'sound/items/pickup/cloth.ogg' \ No newline at end of file diff --git a/html/changelogs/geeves-wristwraps.yml b/html/changelogs/geeves-wristwraps.yml new file mode 100644 index 00000000000..1f8df29be82 --- /dev/null +++ b/html/changelogs/geeves-wristwraps.yml @@ -0,0 +1,6 @@ +author: Geeves, Haydizzle + +delete-after: True + +changes: + - rscadd: "Added colourable cloth handwraps to the Unathi loadout." \ No newline at end of file diff --git a/icons/obj/unathi_items.dmi b/icons/obj/unathi_items.dmi index 66c9703f568..59e6dba45cd 100644 Binary files a/icons/obj/unathi_items.dmi and b/icons/obj/unathi_items.dmi differ