diff --git a/code/modules/client/preference_setup/loadout/loadout_religion.dm b/code/modules/client/preference_setup/loadout/loadout_religion.dm index d8cf691d9fc..f5ed1280008 100644 --- a/code/modules/client/preference_setup/loadout/loadout_religion.dm +++ b/code/modules/client/preference_setup/loadout/loadout_religion.dm @@ -65,6 +65,11 @@ display_name = "tribunal necklace" path = "/obj/item/clothing/accessory/dominia" +/datum/gear/religion/dominia/medical + display_name = "tribunalist medical beret" + path = /obj/item/clothing/head/beret/dominia/medical + allowed_roles = list("Chief Medical Officer", "Physician", "Surgeon", "Pharmacist", "First Responder", "Medical Intern") + /datum/gear/religion/shaman_staff display_name = "shaman staff" path = /obj/item/cane/shaman diff --git a/code/modules/clothing/factions/dominia.dm b/code/modules/clothing/factions/dominia.dm index 91b95b71ae6..5df24b0635b 100644 --- a/code/modules/clothing/factions/dominia.dm +++ b/code/modules/clothing/factions/dominia.dm @@ -397,12 +397,20 @@ /obj/item/clothing/head/beret/dominia name = "tribunal initiate's beret" desc = "A simple red beret with a golden badge marking its wearer as an initiate of the Moroz Holy Tribunal." - desc_fluff = " While initiates dress humbly in white and red clothing, this does not mean that House Caladius - the primary source of the Holy Tribunal's \ + desc_fluff = "While initiates dress humbly in white and red clothing, this does not mean that House Caladius - the primary source of the Holy Tribunal's \ funding - spares any expenses funding them, and these berets are made of luxurious velvet." icon = 'icons/clothing/head/dominia_beret.dmi' icon_state = "dominia_beret" item_state = "dominia_beret" +/obj/item/clothing/head/beret/dominia/medical + name = "tribunalist medical beret" + desc = "A white-and-green beret bearing the sigil of the Moroz Holy Tribunal on its front. Worn by those medical workers affiliated with the Moroz Holy Tribunal." + desc_fluff = "Unlike the black and gold clothing of their priestly counterparts, the medical staff of the Moroz Holy Tribunal's temples are generally clad in white and green due to typically not being full members of the clergy. Occasionally, if a doctor is dedicated enough, they will be granted the right to wear the beret of a full Tribunal priest. This beret features an emblem of the eye made of green and white cloth." + icon = 'icons/clothing/head/dominia_beret_hospital.dmi' + icon_state = "dominia_beret_hospital" + item_state = "dominia_beret_hospital" + /obj/item/clothing/head/beret/dominia/priest name = "tribunalist's beret" desc = " black beret bearing the sigil of the Moroz Holy Tribunal on its front. Worn by full members of the Tribunal's clergy." diff --git a/html/changelogs/TribunalMedic.yml b/html/changelogs/TribunalMedic.yml new file mode 100644 index 00000000000..530868ad1b8 --- /dev/null +++ b/html/changelogs/TribunalMedic.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Adds the tribunalist medical beret." \ No newline at end of file diff --git a/icons/clothing/head/dominia_beret_hospital.dmi b/icons/clothing/head/dominia_beret_hospital.dmi new file mode 100644 index 00000000000..857fe1ddbef Binary files /dev/null and b/icons/clothing/head/dominia_beret_hospital.dmi differ