diff --git a/code/modules/background/accent/skrell.dm b/code/modules/background/accent/skrell.dm index 0e53088e5f2..0686bb9a8e0 100644 --- a/code/modules/background/accent/skrell.dm +++ b/code/modules/background/accent/skrell.dm @@ -40,7 +40,7 @@ seems to remain within the low ranges, often described as high-pitched and nasal in tone." tag_icon = "skrell_traverse" text_tag = "TRA" - + /datum/accent/skrell/genner name = ACCENT_GENNER description = "The Generation Fleet accent is actually a catch-all term for the various accents that have developed aboard the Generation Fleets of the Jargon Federation. \ @@ -48,7 +48,7 @@ described as sounding 'older' by other Skrell." tag_icon = "skrell_genner" text_tag = "GEN" - + /datum/accent/skrell/ceti name = ACCENT_SKRELLCETI description = "While the Biesel accent is easy to pick up by most Tau Ceti Basic speakers, the Biesellite Skrell Standard accent is common in the more insular Skrell communities, \ @@ -56,7 +56,7 @@ characteristics of the Biesellite accent." tag_icon = "skrell_biesel" text_tag = "BSS" - + /datum/accent/skrell/sol name = ACCENT_SKRELLSOL description = "Solarian Skrell Standard can be seen as the Skrellian equivalent of the Solarian accent, having hundreds of variants that can be found on planets across \ @@ -64,7 +64,7 @@ average Solarian accent." tag_icon = "skrell_sol" text_tag = "SSS" - + /datum/accent/skrell/coc name = ACCENT_SKRELLCOC description = "Coalition Skrell Standard refers to the various accents of Skrell living within the Coalition of Colonies. Heavily influenced by Freespeak, this accent \ @@ -77,4 +77,11 @@ name = ACCENT_SROM description = "The projection of one's inner voice within the Srom. Anyone can understand or speak this language innately upon entering the Srom." tag_icon = "skrell_srom" - text_tag = "SRM" \ No newline at end of file + text_tag = "SRM" + +/datum/accent/skrell/tattuqig + name = ACCENT_TATTUQIG + description = "The Tattuqig accent has a slight drawl to it, and is known for the dropping or merging of vowels when speaking. Like many other Traverse accents it has \ + a certain stigma attached to it, and is noted as being 'rural' or 'unrefined' by Skrell from the inner systems." + tag_icon = "skrell_tattuqig" + text_tag = "TAT" \ No newline at end of file diff --git a/code/modules/background/defines.dm b/code/modules/background/defines.dm index 1a81ce3c560..e701d8feb04 100644 --- a/code/modules/background/defines.dm +++ b/code/modules/background/defines.dm @@ -132,6 +132,7 @@ #define ACCENT_SKRELLCOC "Coalition Skrell Standard" #define ACCENT_SKRELLCETI "Biesellite Skrell Standard" #define ACCENT_SROM "Inner Voice" +#define ACCENT_TATTUQIG "Tattuqig" #define ACCENT_ROOTSONG "Rootsong" #define ACCENT_VOIDSONG "Voidsong" diff --git a/code/modules/background/origins/origins/skrell/jargon.dm b/code/modules/background/origins/origins/skrell/jargon.dm index 8cd39f62b5f..c97e7741f2d 100644 --- a/code/modules/background/origins/origins/skrell/jargon.dm +++ b/code/modules/background/origins/origins/skrell/jargon.dm @@ -21,7 +21,7 @@ /decl/origin_item/origin/traverse name = "Traverse" desc = "The Traverse consists of the outer systems that make up the majority of Federation space, where the quality of life and planet development varies greatly. Views on the Federation are mixed depending on personal interactions with the Government, with many being influenced by the resistance cells that operate here." - possible_accents = list(ACCENT_TRAVERSE, ACCENT_SKRELL) + possible_accents = list(ACCENT_TRAVERSE, ACCENT_TATTUQIG, ACCENT_SKRELL) possible_citizenships = CITIZENSHIPS_JARGON possible_religions = RELIGIONS_JARGON diff --git a/html/changelogs/tattuqigaccent.yml b/html/changelogs/tattuqigaccent.yml new file mode 100644 index 00000000000..2d99b0072fe --- /dev/null +++ b/html/changelogs/tattuqigaccent.yml @@ -0,0 +1,12 @@ +author: WhatsUpBrotendo + +# 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: "Added Tattuqig accent as an option for Traverse Skrell." diff --git a/icons/accent_tags.dmi b/icons/accent_tags.dmi index 4631018fc21..ec27e56b72f 100644 Binary files a/icons/accent_tags.dmi and b/icons/accent_tags.dmi differ