diff --git a/aurorastation.dme b/aurorastation.dme index cecc55437a4..b48d79e8d03 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1448,6 +1448,7 @@ #include "code\modules\background\origins\origins\tajara\offworld.dm" #include "code\modules\background\origins\origins\unathi\autakh.dm" #include "code\modules\background\origins\origins\unathi\izweski.dm" +#include "code\modules\background\origins\origins\unathi\queendom.dm" #include "code\modules\background\origins\origins\unathi\spaceborn.dm" #include "code\modules\background\origins\origins\unathi\traditionalist.dm" #include "code\modules\background\origins\origins\unknown\unknown.dm" diff --git a/code/modules/background/accent/unathi.dm b/code/modules/background/accent/unathi.dm index f9abacfa9d6..311eb5b008f 100644 --- a/code/modules/background/accent/unathi.dm +++ b/code/modules/background/accent/unathi.dm @@ -44,3 +44,9 @@ description = "Incorporating both Hegemonic and Traditionalist elements, the Aut'akh accent is recognisable for its lack of accentuation and intonations, both owing to the occasional implants of questionable quality having some influence on speech, and the general isolation of most Aut'akh communes." tag_icon = "autakh_valley" text_tag = "AUT" + +/datum/accent/queendom + name = ACCENT_QUEENDOM + description = "From deep in the Wasteland there are some who hail from a society unlike most others that inhabit the radioactive sands, those from the Queendom. Those from the Queendom are recognizable by their traditionalist inflections in speech, but with slight differences that have evolved in the decades since first contact." + tag_icon = "trad_queendom" + text_tag = "QEN" diff --git a/code/modules/background/defines.dm b/code/modules/background/defines.dm index 369af0bd6b9..617286caf1b 100644 --- a/code/modules/background/defines.dm +++ b/code/modules/background/defines.dm @@ -132,6 +132,7 @@ #define ACCENT_TRAD_PEASANT "Peasant Traditional" #define ACCENT_WASTELAND "Deep Wastelander" #define ACCENT_AUTAKH "Aut'akh Dialect" +#define ACCENT_QUEENDOM "Queendom Dialect" #define ACCENT_SKRELL "Standard Nral'Malic" #define ACCENT_HOMEWORLD "Qerrbalak" diff --git a/code/modules/background/origins/origins/unathi/queendom.dm b/code/modules/background/origins/origins/unathi/queendom.dm new file mode 100644 index 00000000000..bba9f361b58 --- /dev/null +++ b/code/modules/background/origins/origins/unathi/queendom.dm @@ -0,0 +1,13 @@ +/singleton/origin_item/culture/queendom + name = "Queendom of Sezk-Hakh" + desc = "Situated across Moghes’ eastern hemisphere, within the Tzuszah Wastes, the Queendom of Sezk-Hakh has managed to thrive somewhat, isolated from the ires of the Izweski Hegemony thanks to the extensive, growing Wasteland. Led by the elderly Queen Lazak Szek’Hakh alongside her daughters, Zasza and Tzansa. Though the Wasteland has made resources within the previously lush region somewhat scarce, the Queendom manages to teeter between thriving and surviving thanks to the extensive aquaculture industry that exists within the capital of Yu’kal – expanded upon by Queen Lazak following the death of her husband during the Contact War." + possible_origins = list( + /singleton/origin_item/origin/queendom + ) + +/singleton/origin_item/origin/queendom + name = "Queendom" + desc = "A wildly different culture compared to most Unathi, the Queendom is a matriarchal society where the normal gender roles are inverted. Born out of the fire of the contact war, only time will tell if their new culture will continue onwards, or fall forgotten into the sands of the Wasteland." + possible_accents = list(ACCENT_QUEENDOM) + possible_citizenships = list(CITIZENSHIP_IZWESKI) + possible_religions = list(RELIGION_THAKH, RELIGION_SKAKH, RELIGION_SIAKH, RELIGION_OTHER, RELIGION_NONE) diff --git a/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm b/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm index 4d038ceebfe..657f95b6f7c 100644 --- a/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm +++ b/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm @@ -122,6 +122,7 @@ /singleton/origin_item/culture/traditionalists, /singleton/origin_item/culture/spaceborn, /singleton/origin_item/culture/dominian_unathi, + /singleton/origin_item/culture/queendom, /singleton/origin_item/culture/autakh ) diff --git a/html/changelogs/geeves-queenies.yml b/html/changelogs/geeves-queenies.yml new file mode 100644 index 00000000000..b2587bcd364 --- /dev/null +++ b/html/changelogs/geeves-queenies.yml @@ -0,0 +1,6 @@ +author: Captain Gecko, Triogenix, Geeves + +delete-after: True + +changes: + - rscadd: "Added a Queendom origin and Accent." \ No newline at end of file diff --git a/icons/accent_tags.dmi b/icons/accent_tags.dmi index 3d5cb36fff1..0e133a239e2 100644 Binary files a/icons/accent_tags.dmi and b/icons/accent_tags.dmi differ