diff --git a/code/modules/client/preference_setup/loadout/loadout_religion.dm b/code/modules/client/preference_setup/loadout/loadout_religion.dm index afc52b12894..d59b701f2c6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_religion.dm +++ b/code/modules/client/preference_setup/loadout/loadout_religion.dm @@ -77,6 +77,7 @@ var/list/beret = list() beret["tribunal initiate's beret"] = /obj/item/clothing/head/beret/dominia beret["tribunalist's beret"] = /obj/item/clothing/head/beret/dominia/priest + beret["tribunalist's beret, red"] = /obj/item/clothing/head/beret/dominia/priest/red gear_tweaks += new /datum/gear_tweak/path(beret) /datum/gear/religion/dominia/cape diff --git a/code/modules/clothing/factions/dominia.dm b/code/modules/clothing/factions/dominia.dm index 64993660bcf..6ce926f4754 100644 --- a/code/modules/clothing/factions/dominia.dm +++ b/code/modules/clothing/factions/dominia.dm @@ -417,13 +417,22 @@ /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." + desc = "A black beret bearing the sigil of the Moroz Holy Tribunal on its front. Worn by full members of the Tribunal's clergy." desc_fluff = "With their black and gold clothing designed to resemble that of their noble counterparts, the full clergy of the Moroz Holy Tribunal \ are a sight to behold both inside and outside of the Empire of Dominia. This beret features an emblem luxuriously and painstakingly crafted out of real gold." icon = 'icons/clothing/head/dominia_beret_priest.dmi' icon_state = "dominia_beret_priest" item_state = "dominia_beret_priest" +/obj/item/clothing/head/beret/dominia/priest/red + name = "tribunalist's beret" + desc = "A red beret bearing the sigil of the Moroz Holy Tribunal on its front. Worn by full members of the Tribunal's clergy." + desc_fluff = "With their red and gold clothing designed to resemble that of their noble counterparts, the full clergy of the Moroz Holy Tribunal \ + are a sight to behold both inside and outside of the Empire of Dominia. This beret features an emblem luxuriously and painstakingly crafted out of real gold." + icon = 'icons/clothing/head/dominia_beret_priest.dmi' + icon_state = "dominia_beret_priest_red" + item_state = "dominia_beret_priest_red" + /obj/item/clothing/head/beret/dominia/consular name = "tribunalist's beret" desc = "A beret in gold and red worn by members of the clergy affiliated with His Majesty's Diplomatic Service." diff --git a/html/changelogs/DreamySkrell.yml b/html/changelogs/DreamySkrell.yml new file mode 100644 index 00000000000..a9e09d24f6c --- /dev/null +++ b/html/changelogs/DreamySkrell.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: DreamySkrell + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds red tribunalist beret." diff --git a/icons/clothing/head/dominia_beret_priest.dmi b/icons/clothing/head/dominia_beret_priest.dmi index 6f855393677..bf3dbcea1a2 100644 Binary files a/icons/clothing/head/dominia_beret_priest.dmi and b/icons/clothing/head/dominia_beret_priest.dmi differ