diff --git a/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm b/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm index 44502aa4d47..8ae3a5018db 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm @@ -20,7 +20,7 @@ ABSTRACT_TYPE(/datum/gear/shoes/tajara) boots["grey workboots"] = /obj/item/clothing/shoes/workboots/tajara/grey boots["dark workboots"] = /obj/item/clothing/shoes/workboots/tajara/dark boots["adhomian boots"] = /obj/item/clothing/shoes/workboots/tajara/adhomian_boots - boots["native tajaran footwear"] = /obj/item/clothing/shoes/tajara/footwraps + boots["kah'romra wraps"] = /obj/item/clothing/shoes/tajara/footwraps boots["fancy adhomian shoes"] = /obj/item/clothing/shoes/tajara/fancy boots["saddle shoes, black"] = /obj/item/clothing/shoes/sneakers/black/tajara boots["high-heeled adhomian shoes, black"] = /obj/item/clothing/shoes/heels/tajara diff --git a/code/modules/clothing/shoes/xeno/tajara.dm b/code/modules/clothing/shoes/xeno/tajara.dm index 59a9fef546e..97e8d05db36 100644 --- a/code/modules/clothing/shoes/xeno/tajara.dm +++ b/code/modules/clothing/shoes/xeno/tajara.dm @@ -1,5 +1,5 @@ /obj/item/clothing/shoes/tajara/footwraps - name = "native tajaran foot-wear" + name = "kah'romra" desc = "Native foot and leg wear worn by Tajara, completely covering the legs in wraps and the feet in adhomian fabric." icon = 'icons/obj/tajara_items.dmi' icon_state = "adhomai_shoes" @@ -8,11 +8,11 @@ species_restricted = list(BODYTYPE_TAJARA) contained_sprite = TRUE move_trail = null - desc_extended = "Today the fashion that dominates Adhomai shares few similarities to the clothing of old Furs, linen, hemp, silk and other such fabrics were traded for \ - synthetic versions, creating a massive boom in the nylon industry and textile industry in the cities. Jeans, overcoats, army uniforms, parade uniforms, flags, pants, shirts, ties, \ - suspenders, overalls are now the fashion of every Tajara from Nal'Tor to Kaltir. The protests of \"Old fashion\" supporters can't stand against how undeniably effective and cheap \ - to produce Human clothes are. There are a few notable branches, the long-coat and fedora \"gangster style\". Leather jacket wearing \"Greaser\" or the popular amongst females, short \ - and colorful dress wearing \"Flapper\" variety of clothing." + desc_extended = "Kahriye Romra, often shortened to Kah'Romra or just Romra, are a traditional set of Adhomian fabrics \ + and leathers that wrap the legs and feet. The style of footwear has existed on Adhomai for longer than recorded history \ + and continues to survive well into the modern eras of Tajaran history. The combination of tough leathers on the feet, and \ + insulating fabrics and furs along the legs combine the warmth and protection needed to cross Adhomai's rugged terrain. \ + Modern Kah'Romra utilize treated fabrics and leathers for increased durability." // Flats. // since everything except the onmob is a carbon copy, we just add another onmob sprite with the proper suffix and the species restriction to avoid bloat diff --git a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm index fe76f9a2a13..5b58a8692a2 100644 --- a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm +++ b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm @@ -135,5 +135,5 @@ . = ..() if(H.shoes) return - var/obj/item/clothing/shoes/sandals/S = new /obj/item/clothing/shoes/sandals(H) + var/obj/item/clothing/shoes/tajara/footwraps/S = new /obj/item/clothing/shoes/tajara/footwraps(H) H.equip_to_slot_or_del(S,slot_shoes) diff --git a/html/changelogs/TajShoes.yml b/html/changelogs/TajShoes.yml new file mode 100644 index 00000000000..d7eb6e4a414 --- /dev/null +++ b/html/changelogs/TajShoes.yml @@ -0,0 +1,7 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Native tajaran foot-wear has been renamed to kah'romra." + - rscadd: "Changed the default taj shoes from sandals to kah'romra."