diff --git a/code/modules/client/preference_setup/loadout/loadout_religion.dm b/code/modules/client/preference_setup/loadout/loadout_religion.dm index 30982cf6896..35f3f964b7a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_religion.dm +++ b/code/modules/client/preference_setup/loadout/loadout_religion.dm @@ -33,6 +33,13 @@ display_name = "rosary" path = /obj/item/clothing/accessory/rosary +/datum/gear/religion/kippah + display_name = "kippah" + description = "A head covering commonly worn by those of Jewish faith." + path = /obj/item/clothing/head/kippah + slot = slot_head + 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/head/misc.dm b/code/modules/clothing/head/misc.dm index d106d1b98b7..3614cfe045b 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -347,6 +347,14 @@ BODYTYPE_VAURCA_BULWARK = 'icons/mob/species/bulwark/head.dmi' ) +/obj/item/clothing/head/kippah + name = "kippah" + desc = "A head covering commonly worn by those of Jewish faith." + icon = 'icons/clothing/head/kippahs.dmi' + icon_state = "kippah" + item_state = "kippah" + contained_sprite = 1 + /obj/item/clothing/head/turban name = "turban" desc = "A sturdy cloth, worn around the head." diff --git a/html/changelogs/llywelwyn-kippah.yml b/html/changelogs/llywelwyn-kippah.yml new file mode 100644 index 00000000000..8982efdd666 --- /dev/null +++ b/html/changelogs/llywelwyn-kippah.yml @@ -0,0 +1,6 @@ +author: Llywelwyn + +delete-after: True + +changes: + - rscadd: "Adds a kippah to the loadout." diff --git a/icons/clothing/head/kippahs.dmi b/icons/clothing/head/kippahs.dmi new file mode 100644 index 00000000000..907d6ed95c4 Binary files /dev/null and b/icons/clothing/head/kippahs.dmi differ