Dominia Content Update I: The Pax Liturgica (#16737)

* if you can read this shut up about it

* please

* please?

* fine. i'll do it myself

* Revert "fine. i'll do it myself"

This reverts commit 9682843336.

* please please

* i thought computers were supposed to be smart

* finishing touches

* it's never really the last change

* fixes missing witchfinder book

* yangechog

* edictjustments
This commit is contained in:
juniper
2023-07-21 15:33:10 -04:00
committed by GitHub
parent 767f146dd0
commit 12760c68a0
20 changed files with 708 additions and 22 deletions

View File

@@ -236,6 +236,24 @@
faction = "Zavodskoi Interstellar"
allowed_roles = list("Head of Security", "Warden", "Investigator", "Security Officer", "Security Cadet")
/datum/gear/faction/zavodskoicape
display_name = "zavodskoi dominian great house cape selection"
description = "A selection of Zavodskoi-colored Dominian great house capes."
slot = slot_wear_suit
faction = "Zavodskoi Interstellar"
culture_restriction = list(/singleton/origin_item/culture/dominia, /singleton/origin_item/culture/dominian_unathi)
/datum/gear/faction/zavodskoicape/New()
..()
var/list/zavodskoicape = list()
zavodskoicape["zavodskoi dominia cape"] = /obj/item/clothing/accessory/poncho/dominia_cape/zavod
zavodskoicape["zavodskoi dominia cape, strelitz"] = /obj/item/clothing/accessory/poncho/dominia_cape/strelitz/zavod
zavodskoicape["zavodskoi dominia cape, volvalaad"] = /obj/item/clothing/accessory/poncho/dominia_cape/volvalaad/zavod
zavodskoicape["zavodskoi dominia cape, kazhkz"] = /obj/item/clothing/accessory/poncho/dominia_cape/kazhkz/zavod
zavodskoicape["zavodskoi dominia cape, caladius"] = /obj/item/clothing/accessory/poncho/dominia_cape/caladius/zavod
zavodskoicape["zavodskoi dominia cape, zhao"] = /obj/item/clothing/accessory/poncho/dominia_cape/zhao/zavod
gear_tweaks += new /datum/gear_tweak/path(zavodskoicape)
// PMCG
/datum/gear/faction/pmc_sunglasses
display_name = "PMCG security HUD selection"

View File

@@ -268,6 +268,7 @@
comics["az'marian comic, issue 6"] = /obj/item/toy/comic/azmarian/issue_6
comics["az'marian comic, issue 7"] = /obj/item/toy/comic/azmarian/issue_7
comics["az'marian comic, issue 8"] = /obj/item/toy/comic/azmarian/issue_8
comics["dominian witchfinder novel"] = /obj/item/toy/comic/witchfinder
gear_tweaks += new /datum/gear_tweak/path(comics)
/datum/gear/toothpaste

View File

@@ -197,3 +197,20 @@
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)