Files
Aurora.3/code/modules/client/preference_setup/loadout/items/religion.dm
T
TheStrykerandGitHub 546d5af4d6 Adds Trinary Perfection robes. (#16953)
* adds trinary stuff

* changelog

* reverts .dme

* more fixing of stuff

* fixes more

* adds templeist quotes

* fixes loadout

* trinary
2023-08-10 11:04:11 +00:00

236 lines
10 KiB
Plaintext

/datum/gear/religion
display_name = "trinary perfection mask"
path = /obj/item/clothing/mask/trinary_mask
slot = slot_wear_mask
sort_category = "Religion"
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/religion/trinary
display_name = "trinary perfection brooch"
path = /obj/item/clothing/accessory/badge/trinary
slot = slot_tie
/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
slot = slot_w_uniform
/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
gear_tweaks += new /datum/gear_tweak/path(trinaryrobe)
/datum/gear/religion/trinary/cape
display_name = "trinary perfection cape selection"
description = "A selection of capes worn by adherents to the Trinary Perfection."
path = /obj/item/clothing/accessory/poncho/trinary
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 shoulder cape"] = /obj/item/clothing/accessory/poncho/trinary/shouldercape
trinarycape["trinary perfection pellegrina"] = /obj/item/clothing/accessory/poncho/trinary/pellegrina
gear_tweaks += new /datum/gear_tweak/path(trinarycape)
/datum/gear/religion/trinary/badge
display_name = "trinary perfection brooch"
path = /obj/item/clothing/accessory/badge/trinary
slot = slot_tie
/datum/gear/religion/trinary/book
display_name = "The Order"
description = "The holy text of the Trinary Perfection."
path = /obj/item/device/versebook/trinary
/datum/gear/religion/trinary/book
display_name = "The Voice of Temple"
description = "A supplementary holy text belonging to the Lodge of Temple Architect, an order within the Trinary Perfection."
path = /obj/item/device/versebook/templeist
/datum/gear/religion/rosary
display_name = "rosary"
path = /obj/item/clothing/accessory/rosary
slot = slot_tie
/datum/gear/religion/crucifix
display_name = "crucifix selection"
description = "A selection of different crucifixes, commonly associated with Christianity."
path = /obj/item/clothing/accessory/crucifix
slot = slot_tie
flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_NAME_SELECTION
/datum/gear/religion/crucifix/New()
..()
var/list/crucifix = list()
crucifix["gold crucifix"] = /obj/item/clothing/accessory/crucifix/gold
crucifix["silver crucifix"] = /obj/item/clothing/accessory/crucifix/silver
crucifix["gold saint peter crucifix"] = /obj/item/clothing/accessory/crucifix/gold/saint_peter
crucifix["silver saint peter crucifix"] = /obj/item/clothing/accessory/crucifix/silver/saint_peter
gear_tweaks += new /datum/gear_tweak/path(crucifix)
/datum/gear/religion/shintorobe
display_name = "shrine maiden robe"
path = /obj/item/clothing/under/konyangdresstraditional/red
slot = slot_w_uniform
/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/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."
path = /obj/item/clothing/under/dominia/priest
slot = slot_w_uniform
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/robe/New()
..()
var/list/robe = list()
robe["tribunalist's robe"] = /obj/item/clothing/under/dominia/priest
robe["tribunal initiate's robe"] = /obj/item/clothing/under/dominia/initiate
gear_tweaks += new /datum/gear_tweak/path(robe)
/datum/gear/religion/dominia/beret
display_name = "dominian beret selection"
description = "A selection of modified berets belonging to Dominia's Moroz Holy Tribunal."
path = /obj/item/clothing/under/dominia/priest
slot= slot_head
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/beret/New()
..()
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
display_name = "dominian outerwear selection"
description = "A selection of capes and outerwear worn by the Moroz Holy Tribunal."
path = /obj/item/clothing/under/dominia/priest
slot = slot_wear_suit
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/cape/New()
..()
var/list/cape = list()
cape["tribunalist red cape"] = /obj/item/clothing/accessory/poncho/dominia/red
cape["tribunalist full cape"] = /obj/item/clothing/accessory/poncho/dominia/red/double
cape["tribunalist surcoat"] = /obj/item/clothing/accessory/poncho/dominia/red/surcoat
gear_tweaks += new /datum/gear_tweak/path(cape)
/datum/gear/religion/assunzione/robe
display_name = "assunzione robe selection"
description = "A selection of robes worn by adherents to Luceism."
path = /obj/item/clothing/accessory/poncho/assunzione
slot = slot_wear_suit
origin_restriction = list(/singleton/origin_item/origin/assunzione, /singleton/origin_item/origin/ipc_assunzione)
/datum/gear/religion/assunzione/robe/New()
..()
var/list/assunzionerobe = list()
assunzionerobe["assunzione robe"] = /obj/item/clothing/accessory/poncho/assunzione
assunzionerobe["assunzione vine-inlaid robe"] = /obj/item/clothing/accessory/poncho/assunzione/vine
assunzionerobe["assunzione gold-inlaid robe"] = /obj/item/clothing/accessory/poncho/assunzione/gold
gear_tweaks += new /datum/gear_tweak/path(assunzionerobe)
/datum/gear/religion/dominia/accessory
display_name = "tribunal necklace"
path = /obj/item/clothing/accessory/dominia
slot = slot_tie
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/medical
display_name = "tribunalist medical beret"
path = /obj/item/clothing/head/beret/dominia/medical
slot = slot_head
allowed_roles = list("Chief Medical Officer", "Physician", "Surgeon", "Pharmacist", "First Responder", "Medical Intern")
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/shaman_staff
display_name = "shaman staff"
path = /obj/item/cane/shaman
slot = slot_l_hand
/datum/gear/religion/dominia/robe_consular
display_name = "tribunalist consular uniform"
description = "The traditional red-black-gold uniform of a priestly member of His Majesty's Diplomatic Service."
path = /obj/item/clothing/under/dominia/priest/consular
slot = slot_w_uniform
allowed_roles = list("Consular Officer")
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/beret_consular
display_name = "tribunalist consular beret"
description = "An elegant and well-tailored gold-and-red beret worn by priestly members of His Majesty's Diplomatic Service."
path = /obj/item/clothing/head/beret/dominia/consular
slot = slot_head
allowed_roles = list("Consular Officer")
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/cape_consular
display_name = "tribunalist cousular cape"
description = "A truly majestic gold and red cape worn by members of the clergy affiliated with His Majesty's Diplomatic Service."
path = /obj/item/clothing/accessory/poncho/dominia/consular
slot = slot_wear_suit
allowed_roles = list("Consular Officer")
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/assunzione/accessory
display_name = "luceian amulet"
path = /obj/item/clothing/accessory/assunzione
slot = slot_tie
origin_restriction = list(/singleton/origin_item/origin/assunzione, /singleton/origin_item/origin/ipc_assunzione)
/datum/gear/religion/assunzioneorb
display_name = "assunzione warding sphere"
description = "A religious artefact commonly associated with Luceism."
path = /obj/item/assunzioneorb
origin_restriction = list(/singleton/origin_item/origin/assunzione, /singleton/origin_item/origin/ipc_assunzione)
/datum/gear/religion/assunzionesheath
display_name = "assunzione warding sphere sheath"
description = "A small metal shell designed to hold a warding sphere."
path = /obj/item/storage/assunzionesheath
origin_restriction = list(/singleton/origin_item/origin/assunzione, /singleton/origin_item/origin/ipc_assunzione)
/datum/gear/religion/dominia/codex
display_name = "tribunal codex"
path = /obj/item/device/versebook/tribunal
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/icon
display_name = "tribunal iconography"
description = "A selection of Dominian religious icons."
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/religion/dominia/icon/New()
..()
var/list/dominiaicon = list()
dominiaicon["icon of the goddess, unaspected"] = /obj/item/sign/painting_frame/goddess
dominiaicon["icon of the goddess, the soldier"] = /obj/item/sign/painting_frame/goddess/soldier
dominiaicon["icon of the goddess, the artisan"] = /obj/item/sign/painting_frame/goddess/artisan
dominiaicon["icon of the goddess, the scholar"] = /obj/item/sign/painting_frame/goddess/scholar
dominiaicon["icon of the martyr, lotte"] = /obj/item/sign/painting_frame/martyr
dominiaicon["icon of the martyr, matteo"] = /obj/item/sign/painting_frame/martyr/matteo
dominiaicon["icon of the martyr, valeria"] = /obj/item/sign/painting_frame/martyr/valeria
gear_tweaks += new /datum/gear_tweak/path(dominiaicon)