diff --git a/code/modules/background/accent/skrell.dm b/code/modules/background/accent/skrell.dm index 57d780f79b8..4222edf6244 100644 --- a/code/modules/background/accent/skrell.dm +++ b/code/modules/background/accent/skrell.dm @@ -41,3 +41,24 @@ As a result of being separated from their planet of origin for generations, these accents don't have much in common with any modern Skrell accent, and are usually \ described as sounding 'older' by other Skrell." tag_icon = "skrell_genner" + +/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, \ + especially those who are strongly pro-Federation. Biesellite Skrell Standard has many holdovers from Jargon accents while also having some of the more obvious \ + characteristics of the Biesellite accent." + tag_icon = "skrell_biesel" + +/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 \ + the Sol Alliance. The accent has kept the notable tones from accents found in the Federation, while still heavily influenced by the pacing and pronunciation common in the \ + average Solarian accent." + tag_icon = "skrell_sol" + +/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 \ + is more guttural, with lower-pitched tones being more prevalent. The Coalition of Colonies has a reputation for being generally anti-Federation in policy, which has \ + resulted in this accent being seen by Skrell as anti-Federation by association." + tag_icon = "skrell_coalition" diff --git a/code/modules/background/defines.dm b/code/modules/background/defines.dm index 671a5e05c85..aad6d8461af 100644 --- a/code/modules/background/defines.dm +++ b/code/modules/background/defines.dm @@ -127,6 +127,9 @@ #define ACCENT_AWEIJI "Aweiji" #define ACCENT_TRAVERSE "Traverse" #define ACCENT_GENNER "Generational Ship" +#define ACCENT_SKRELLSOL "Solarian Skrell Standard" +#define ACCENT_SKRELLCOC "Coalition Skrell Standard" +#define ACCENT_SKRELLCETI "Biesellite Skrell Standard" #define ACCENT_ROOTSONG "Rootsong" #define ACCENT_VOIDSONG "Voidsong" diff --git a/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm b/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm index cc6da57bc8e..98fa292cfaf 100644 --- a/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm +++ b/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm @@ -90,8 +90,8 @@ default_citizenship = CITIZENSHIP_JARGON default_accent = ACCENT_SKRELL - allowed_accents = list(ACCENT_SKRELL, ACCENT_HOMEWORLD, ACCENT_QERRMALIC, ACCENT_ALIOSE, ACCENT_AWEIJI, ACCENT_TRAVERSE, ACCENT_CETI, ACCENT_GIBSON, ACCENT_COC, ACCENT_ERIDANI, - ACCENT_ERIDANIDREG, ACCENT_VENUS, ACCENT_JUPITER, ACCENT_MARTIAN, ACCENT_SILVERSUN_EXPATRIATE, ACCENT_EUROPA, ACCENT_VALKYRIE, ACCENT_MICTLAN, ACCENT_GENNER) + allowed_accents = list(ACCENT_SKRELL, ACCENT_HOMEWORLD, ACCENT_QERRMALIC, ACCENT_ALIOSE, ACCENT_AWEIJI, ACCENT_TRAVERSE, ACCENT_SKRELLCETI, + ACCENT_GIBSON, ACCENT_SKRELLCOC, ACCENT_EUROPA, ACCENT_SKRELLSOL, ACCENT_MICTLAN, ACCENT_GENNER) zombie_type = SPECIES_ZOMBIE_SKRELL bodyfall_sound = /decl/sound_category/bodyfall_skrell_sound diff --git a/html/changelogs/accent.yml b/html/changelogs/accent.yml new file mode 100644 index 00000000000..b989aa007be --- /dev/null +++ b/html/changelogs/accent.yml @@ -0,0 +1,6 @@ +author: RyverStyx + +delete-after: True + +changes: + - rscadd: "Added 3 skrell accents." diff --git a/icons/accent_tags.dmi b/icons/accent_tags.dmi index 5deead40c27..d33a74bb706 100644 Binary files a/icons/accent_tags.dmi and b/icons/accent_tags.dmi differ