diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index c4c9fe564e..c4dd57d681 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 0000000000..8b1680a2c8 --- /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/obj/clothing/species/teshari/shoes.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/mob/species/teshari/shoes.dmi b/icons/mob/species/teshari/shoes.dmi index 66f18f37bb..273f36d28e 100644 Binary files a/icons/mob/species/teshari/shoes.dmi and b/icons/mob/species/teshari/shoes.dmi differ diff --git a/icons/obj/clothing/species/teshari/shoes.dmi b/icons/obj/clothing/species/teshari/shoes.dmi new file mode 100644 index 0000000000..1fc31f73cc Binary files /dev/null and b/icons/obj/clothing/species/teshari/shoes.dmi differ diff --git a/polaris.dme b/polaris.dme index 2dea794844..993e0864d7 100644 --- a/polaris.dme +++ b/polaris.dme @@ -1632,6 +1632,7 @@ #include "code\modules\clothing\shoes\leg_guards.dm" #include "code\modules\clothing\shoes\magboots.dm" #include "code\modules\clothing\shoes\miscellaneous.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"