diff --git a/code/modules/client/preference_setup/loadout/loadout_religion.dm b/code/modules/client/preference_setup/loadout/loadout_religion.dm index 88206d8ad59..75cfc8ed518 100644 --- a/code/modules/client/preference_setup/loadout/loadout_religion.dm +++ b/code/modules/client/preference_setup/loadout/loadout_religion.dm @@ -67,6 +67,13 @@ slot = slot_head flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION +/datum/gear/religion/tallit + display_name = "tallit" + description = "A prayer shawl commonly worn by those of Jewish faith." + path = /obj/item/clothing/accessory/tallit + slot = slot_tie + flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + /datum/gear/religion/dominia/robe display_name = "dominian robe selection" description = "A selection of robes belonging to Dominia's Moroz Holy Tribunal." diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 7abd22140ce..fea54a6ad2f 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -342,6 +342,15 @@ icon_state = "assunzione_amulet" contained_sprite = TRUE +/obj/item/clothing/accessory/tallit + name = "tallit" + desc = "A tallit is a fringed garment worn as a prayer shawl by religious Jews. \ + The tallit has special twined and knotted fringes known as tzitzit attached to its four corners." + icon = 'icons/clothing/accessories/tallit.dmi' + item_state = "tallit" + icon_state = "tallit" + contained_sprite = TRUE + /obj/item/clothing/accessory/suspenders name = "suspenders" desc = "They suspend the illusion of the mime's play." diff --git a/html/changelogs/tallit.yml b/html/changelogs/tallit.yml new file mode 100644 index 00000000000..28834f25c0f --- /dev/null +++ b/html/changelogs/tallit.yml @@ -0,0 +1,6 @@ +author: RyverStyx + +delete-after: True + +changes: + - rscadd: "Adds a tallit to the loadout." diff --git a/icons/clothing/accessories/Tallit.dmi b/icons/clothing/accessories/Tallit.dmi new file mode 100644 index 00000000000..5eaeacd6ee3 Binary files /dev/null and b/icons/clothing/accessories/Tallit.dmi differ