diff --git a/code/modules/background/accent/human.dm b/code/modules/background/accent/human.dm index 7a64ccfb273..e37e1816b0b 100644 --- a/code/modules/background/accent/human.dm +++ b/code/modules/background/accent/human.dm @@ -189,6 +189,15 @@ tag_icon = "dominia_novijadran" text_tag = "NOV" +/datum/accent/dominia_lyodii + name = ACCENT_DOMINIA_LYODII + description = "Most commonly associated with Lyodii, otherwise known as the People of the Lyod, Lyodic Morozi is a variation of the common Vulgar Morozi dialect which is most notable for its sing-song pace of speech \ + which makes it distinctive from standard Vulgar Morozi and its higher-pitched counterpart in Fisanduh. Lyodic Morozi is uncommon to hear in the broader Empire, or abroad, due to the isolation of the Lyodii in the Morozian \ + poles, and contains slight variations between the Northern and Southern Lyod. Those who speak the dialect are sometimes looked down upon as backwards savages by their Morozian counterparts. Those who hear the dialect \ + spoken or sing during Lyodic rituals often state it has an eerie beauty, as the sounds of these rituals can carry for kilometers across the barren landscape of the Lyod." + tag_icon = "dominia_lyodii" + text_tag = "LYD" + /datum/accent/jupiter name = ACCENT_JUPITER description = "The Jovian accent is an odd mish-mash of accents from Jupiter's various moons, and has heavy variation on each of the moons. On Europa, the Jovian accent often takes on traces of \ diff --git a/code/modules/background/defines.dm b/code/modules/background/defines.dm index cf6e5c44a80..6f5d770ef98 100644 --- a/code/modules/background/defines.dm +++ b/code/modules/background/defines.dm @@ -86,6 +86,7 @@ #define ACCENT_DOMINIA_VULGAR "Vulgar Morozi" #define ACCENT_DOMINIA_FRONTIER "Imperial Frontier" #define ACCENT_DOMINIA_NOVIJADRAN "Novi Jadranic" +#define ACCENT_DOMINIA_LYODII "Lyodii" #define ACCENT_JUPITER "Jovian" #define ACCENT_CALLISTO "Callistean" #define ACCENT_EUROPA "Europan" diff --git a/code/modules/background/origins/origins/human/dominia.dm b/code/modules/background/origins/origins/human/dominia.dm index 825cdc00e20..267288384d5 100644 --- a/code/modules/background/origins/origins/human/dominia.dm +++ b/code/modules/background/origins/origins/human/dominia.dm @@ -15,7 +15,7 @@ /singleton/origin_item/origin/moroz name = "Moroz" desc = "Morozians represent the peak of Imperial society. They are the nearest to the Emperor, the Goddess, and live upon the Imperial capital planet. But Morozians themselves are not a homogenous group: they are divided between typical Morozians - both Secondaries and Primaries - rebellious Fisanduhians, which still fight to liberate what is left of their mountainous home from the wider Empire, and the nomadic Lyodii that call Moroz's icecaps home." - possible_accents = list(ACCENT_DOMINIA_VULGAR, ACCENT_DOMINIA_HIGH, ACCENT_FISANDUH) + possible_accents = list(ACCENT_DOMINIA_VULGAR, ACCENT_DOMINIA_HIGH, ACCENT_FISANDUH, ACCENT_DOMINIA_LYODII) possible_citizenships = CITIZENSHIPS_DOMINIA possible_religions = list(RELIGION_MOROZ) origin_traits = list(TRAIT_ORIGIN_COLD_RESISTANCE) @@ -57,7 +57,7 @@ name = "Dominian Exile" desc = "Made up of the worst of Imperial society, these Edict Breakers and assorted ne'er-do-wells have been banished or fled from the Empire for a variety of reasons. Some are criminals and deserters, others have more noble reasons, such as fleeing due to religious persecution or political oppression. One thing is common among them: they cannot go home again without facing the judgment of the Empire's courts." important_information = "This origin is for the purposes of playing Edict Breakers that have fled the Empire of Dominia's justice. It is NOT an excuse to play a character with a Dominian accent that is totally divorced from the Empire." - possible_accents = list(ACCENT_DOMINIA_VULGAR, ACCENT_DOMINIA_HIGH) + possible_accents = list(ACCENT_DOMINIA_VULGAR, ACCENT_DOMINIA_HIGH, ACCENT_DOMINIA_NOVIJADRAN, ACCENT_DOMINIA_FRONTIER, ACCENT_DOMINIA_LYODII) possible_citizenships = list(CITIZENSHIP_BIESEL, CITIZENSHIP_COALITION) possible_religions = list(RELIGION_MOROZ, RELIGION_NONE, RELIGION_CHRISTIANITY, RELIGION_ISLAM, RELIGION_BUDDHISM, RELIGION_HINDU, RELIGION_TAOISM, RELIGION_JUDAISM, RELIGION_SHINTO, RELIGION_OTHER) origin_traits = list(TRAIT_ORIGIN_COLD_RESISTANCE) //they're all Morozi anyway diff --git a/html/changelogs/thestryker-accents5.yml b/html/changelogs/thestryker-accents5.yml new file mode 100644 index 00000000000..74d51016d5b --- /dev/null +++ b/html/changelogs/thestryker-accents5.yml @@ -0,0 +1,42 @@ +################################ +# 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: The Stryker, NewOriginalSchwann + +# 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 a Lyodii accent to Morozi and Exile origins. Description done by Schwann." + - tweak: "Adds Novi Jadran to Imperial Exile origins." diff --git a/icons/accent_tags.dmi b/icons/accent_tags.dmi index 8fa7662c9fd..4539267943a 100644 Binary files a/icons/accent_tags.dmi and b/icons/accent_tags.dmi differ