Trinarism care package (#23008)

Adds new Trinarist coif variants, a resprite for the Trinarist robes and
stave, and new Trinarist tunics.

Credit for the bulk of the spritework goes to Wezzy, I cobbled the rest
haphazardly together.

<img width="329" height="986" alt="image"
src="https://github.com/user-attachments/assets/ce3b7d6c-3a76-443f-a8a6-50b25170766e"
/>

---

<img width="286" height="932" alt="image"
src="https://github.com/user-attachments/assets/d4b1bf4d-d9c4-4835-95f0-b67e0f5a92b3"
/>

---

<img width="478" height="131" alt="image"
src="https://github.com/user-attachments/assets/f9bd0954-c024-4944-aa2b-7a3cd6233bda"
/>

---

<img width="305" height="927" alt="image"
src="https://github.com/user-attachments/assets/9f2bc04d-70fd-4766-a119-7c9e9f6d715f"
/>

---

<img width="277" height="919" alt="image"
src="https://github.com/user-attachments/assets/7a065f3d-7514-48cf-a647-15c649133d86"
/>

---

<img width="109" height="110" alt="image"
src="https://github.com/user-attachments/assets/0a5cfb66-5090-471c-b8c3-d4be8c5caab6"
/>

<img width="116" height="115" alt="image"
src="https://github.com/user-attachments/assets/8c4452d9-0a25-45d3-a763-bbdfded1d93e"
/>

<img width="115" height="108" alt="image"
src="https://github.com/user-attachments/assets/c50f8636-cde0-4290-a498-5ec6fe0bd799"
/>
This commit is contained in:
hazelrat
2026-08-09 18:30:58 +00:00
committed by GitHub
parent a818da77be
commit 13a202ef7d
16 changed files with 267 additions and 65 deletions
@@ -6,45 +6,78 @@ ABSTRACT_TYPE(/datum/gear/religion/trinary)
religion = RELIGION_TRINARY
/datum/gear/religion/trinary/mask
display_name = "trinary perfection mask"
display_name = "trinary mask"
description = "A thin lace mask worn by Trinarist faithful while in sacred spaces."
path = /obj/item/clothing/mask/trinary_mask
slot = slot_wear_mask
/datum/gear/religion/trinary/coif
display_name = "trinary perfection coif"
display_name = "trinary coif"
description = "Simple hair-covering headwear common among the faithful of Axiom, and its many monastic orders."
path = /obj/item/clothing/head/trinary
slot = slot_head
/datum/gear/religion/trinary/coif/New()
..()
var/list/trinarycoif = list()
trinarycoif["trinarist coif, red trim"] = /obj/item/clothing/head/trinary
trinarycoif["trinarist coif, blue trim"] = /obj/item/clothing/head/trinary/blue_trim
trinarycoif["trinarist coif, blue"] = /obj/item/clothing/head/trinary/blue
trinarycoif["trinarist coif, black"] = /obj/item/clothing/head/trinary/black
trinarycoif["trinarist coif, green"] = /obj/item/clothing/head/trinary/green
trinarycoif["trinarist coif, habit"] = /obj/item/clothing/head/trinary/habit
gear_tweaks += new /datum/gear_tweak/path(trinarycoif)
/datum/gear/religion/trinary/robe
display_name = "trinary perfection robes selection"
description = "A selection of robes worn by adherents of the Trinary Perfection."
path = /obj/item/clothing/suit/trinary_robes
display_name = "trinary robes selection"
description = "A selection of robes worn by the clergy of the Trinary Perfection, running down to the feet."
path = /obj/item/clothing/suit/storage/hooded/trinary_robes
slot = slot_wear_suit
/datum/gear/religion/trinary/robe/New()
..()
var/list/trinaryrobe = list()
trinaryrobe["trinary perfection robes"] = /obj/item/clothing/suit/trinary_robes
trinaryrobe["trinary perfection habit"] = /obj/item/clothing/suit/trinary_robes/habit
trinaryrobe["templeist robes"] = /obj/item/clothing/suit/trinary_robes/templeist
trinaryrobe["trinary perfection robes"] = /obj/item/clothing/suit/storage/hooded/trinary_robes
trinaryrobe["trinary perfection habit"] = /obj/item/clothing/suit/storage/hooded/trinary_robes/habit
trinaryrobe["templeist robes"] = /obj/item/clothing/suit/storage/hooded/trinary_robes/templeist
gear_tweaks += new /datum/gear_tweak/path(trinaryrobe)
/datum/gear/religion/trinary/tunic
display_name = "axiomite tunic selection"
description = "A selection of tunics worn by the people of Axiom, and their fellow interstellar Trinarists. An emulation of a clerical style."
path = /obj/item/clothing/under/dressshirt/axiom_tunic
slot = slot_w_uniform
/datum/gear/religion/trinary/tunic/New()
..()
var/list/axiomtunic = list()
axiomtunic["axiomite tunic, red trim"] = /obj/item/clothing/under/dressshirt/axiom_tunic
axiomtunic["axiomite tunic, blue trim"] = /obj/item/clothing/under/dressshirt/axiom_tunic/blue_trim
axiomtunic["axiomite tunic, blue"] = /obj/item/clothing/under/dressshirt/axiom_tunic/blue
axiomtunic["axiomite tunic, black"] = /obj/item/clothing/under/dressshirt/axiom_tunic/black
axiomtunic["axiomite tunic, green"] = /obj/item/clothing/under/dressshirt/axiom_tunic/green
gear_tweaks += new /datum/gear_tweak/path(axiomtunic)
/datum/gear/religion/trinary/cape
display_name = "trinary perfection cape selection"
display_name = "trinary cape selection"
description = "A selection of capes worn by adherents to the Trinary Perfection."
path = /obj/item/clothing/accessory/poncho/trinary
path = /obj/item/clothing/under/dressshirt/axiom_tunic
slot = slot_wear_suit
/datum/gear/religion/trinary/cape/New()
..()
var/list/trinarycape = list()
trinarycape["trinary perfection cape"] = /obj/item/clothing/accessory/poncho/trinary
trinarycape["trinary perfection cape, blue"] = /obj/item/clothing/accessory/poncho/trinary/blue
trinarycape["trinary perfection shoulder cape"] = /obj/item/clothing/accessory/poncho/trinary/shouldercape
trinarycape["trinary perfection shoulder cape, blue"] = /obj/item/clothing/accessory/poncho/trinary/shouldercape/blue
trinarycape["trinary perfection pellegrina"] = /obj/item/clothing/accessory/poncho/trinary/pellegrina
trinarycape["trinary perfection pellegrina, blue"] = /obj/item/clothing/accessory/poncho/trinary/pellegrina/blue
gear_tweaks += new /datum/gear_tweak/path(trinarycape)
/datum/gear/religion/trinary/badge
display_name = "trinary perfection brooch"
description = "A declaration of one's commitment to the coming Ascension."
path = /obj/item/clothing/accessory/badge/trinary
slot = slot_tie