diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index c4c9fe564e8..c4dd57d6817 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -677,3 +677,14 @@ whitelisted = SPECIES_TESHARI sort_category = "Xenowear" cost = 4 + +/datum/gear/shoes/teshwrap + display_name = "Teshari legwraps" + path = /obj/item/clothing/shoes/footwraps/teshari + sort_category = "Xenowear" + whitelisted = SPECIES_TESHARI + cost = 1 + +/datum/gear/shoes/teshwrap/New() + ..() + gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/clothing/shoes/xeno/teshari.dm b/code/modules/clothing/shoes/xeno/teshari.dm new file mode 100644 index 00000000000..47fdd90aa8e --- /dev/null +++ b/code/modules/clothing/shoes/xeno/teshari.dm @@ -0,0 +1,8 @@ +/obj/item/clothing/shoes/footwraps/teshari + name = "Teshari legwraps" + desc = "Traditional Teshari footwear, consisting of a cloth wrapping to cover the foot and lower leg." + icon = 'icons/inventory/feet/item_teshari.dmi' + icon_state = "teshwrap" + item_state = "teshwrap" + shoes_under_pants = 1 //these are thin and wrapped around the leg, clothing would go over it + species_restricted = list(SPECIES_TESHARI) \ No newline at end of file diff --git a/icons/inventory/feet/item_teshari.dmi b/icons/inventory/feet/item_teshari.dmi new file mode 100644 index 00000000000..1fc31f73ccb Binary files /dev/null and b/icons/inventory/feet/item_teshari.dmi differ diff --git a/icons/inventory/feet/mob_teshari.dmi b/icons/inventory/feet/mob_teshari.dmi index 66f18f37bb5..273f36d28e4 100644 Binary files a/icons/inventory/feet/mob_teshari.dmi and b/icons/inventory/feet/mob_teshari.dmi differ diff --git a/vorestation.dme b/vorestation.dme index 76994c0fc13..06d9ba7c214 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1979,6 +1979,7 @@ #include "code\modules\clothing\shoes\magboots.dm" #include "code\modules\clothing\shoes\miscellaneous.dm" #include "code\modules\clothing\shoes\miscellaneous_vr.dm" +#include "code\modules\clothing\shoes\xeno\teshari.dm" #include "code\modules\clothing\spacesuits\alien.dm" #include "code\modules\clothing\spacesuits\breaches.dm" #include "code\modules\clothing\spacesuits\miscellaneous.dm"