diff --git a/code/modules/background/accent/tajara.dm b/code/modules/background/accent/tajara.dm index a6c9ba06e11..ab802bc0843 100644 --- a/code/modules/background/accent/tajara.dm +++ b/code/modules/background/accent/tajara.dm @@ -1,6 +1,6 @@ /datum/accent/republican_siik name = ACCENT_REPUBICLANSIIK - description = "The dialect of north and central Ras'nrr. It was spoken by the Hadii dynasty and its subjects before being adopted as the official version of the People's Republic \ + description = "The dialect of central Ras'nrr. It was spoken by the Hadii dynasty and its subjects before being adopted as the official version of the People's Republic \ Siik'maas. This variation is taught in all Republican schools since the end of the first revolution and is considered as the most pure and correct form. PRA citizens are encouraged \ to learn and adopt it, as speaking another accent is frowned upon. It is notable for its unusually rigid grammatical construction as opposed to most other Adhomian dialects. \ Republican Siik'maas is the language of Hadiist loyalists, both in and outside of S'rand'marr." @@ -36,7 +36,7 @@ /datum/accent/low_harr_siik name = ACCENT_LOWHARRSIIK - description = "Native to the southern area of Harr'masir. In comparison to other Siik'maas dialects - it is the one that deviates the most from the standard version. Due to Republican \ + description = "Native to the southern area of Harr'masir. In comparison to other Siik'maas dialects - it is the one that deviates the most from the standard version. Thanks to Republican \ propaganda, it has gained the fame of being the tongue of criminals and guerrilla fighters. Most speakers are Democratic People's Republic citizens. Its words are spoken in a hushed \ manner." tag_icon = "tajara_low_harr" @@ -44,7 +44,7 @@ /datum/accent/amohda_siik name = ACCENT_AMOHDASIIK description = "Spoken by the Tajara from the island of Amohda. Despite past Republican attempts to destroy this dialect; it survived and is now undergoing a period of revival by Amohdan \ - nationalists. It can also be found in the New kingdom because of the Amohda Exiles. Due to royalist influence, it has many Ya'ssa loan words. Amohdan Siik'maas has a characteristic \ + nationalists. It can also be found in the New Kingdom because of the Amohda Exiles. Due to royalist influence, it has many Ya'ssa loan words. Amohdan Siik'maas has a characteristic \ drawl tone to it." tag_icon = "tajara_amohda" @@ -65,4 +65,11 @@ description = "The tongue of the old Tajaran nobility, spoken by those who were born before the first revolution. It differs from the modern Ya'ssa by having a far more complex set \ of rules, long-drawn-out sentences and compound words. Old Ya'ssa is a dying tongue; as the version taught by the New Kingdom of Adhomai has mostly replaced it in the post-revolution \ noble generation." - tag_icon = "tajara_oldyassa" \ No newline at end of file + tag_icon = "tajara_oldyassa" + +/datum/accent/northrasnrr + name = ACCENT_NORTHRASNRR + description = "While similar to the Republican Siik'maas, Northern Ras'nrr Siik’maas is relatively free from the Hadiist additions. It is known for its \ + short, sharp vowel sounds and clear pronunciation. Most speakers are found in the DPRA controlled area of the region, but some do exist within the PRA borders." + tag_icon = "tajara_northrasnrr" + diff --git a/code/modules/background/defines.dm b/code/modules/background/defines.dm index aff80cfd09d..40c75dff9ef 100644 --- a/code/modules/background/defines.dm +++ b/code/modules/background/defines.dm @@ -87,6 +87,7 @@ #define ACCENT_RURALDELVAHHI "Rural Delvahhi" #define ACCENT_NOMADDELVAHHI "Nomadic Delvahhi" #define ACCENT_OLDYASSA "Old Ya'ssa" +#define ACCENT_NORTHRASNRR "Northern Ras'nrr Siik'maas" #define ACCENT_HEGEMON_NOBLE "Noble Hegemonic" #define ACCENT_HEGEMON_PEASANT "Peasant Hegemonic" diff --git a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm index 3465905e937..2fec36fde61 100644 --- a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm +++ b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm @@ -75,10 +75,10 @@ allowed_citizenships = list(CITIZENSHIP_PRA, CITIZENSHIP_DPRA, CITIZENSHIP_NKA) default_citizenship = CITIZENSHIP_PRA - allowed_religions = list(RELIGION_TWINSUNS, RELIGION_MATAKE, RELIGION_RASKARA, RELIGION_NONE, RELIGION_OTHER, RELIGION_CHRISTIANITY, RELIGION_ISLAM, RELIGION_MOROZ) + allowed_religions = list(RELIGION_TWINSUNS, RELIGION_MATAKE, RELIGION_RASKARA, RELIGION_NONE, RELIGION_OTHER) default_accent = ACCENT_REPUBICLANSIIK - allowed_accents = list(ACCENT_REPUBICLANSIIK, ACCENT_NAZIRASIIK, ACCENT_CREVAN, ACCENT_DASNRRASIIK, ACCENT_HIGHHARRSIIK, ACCENT_LOWHARRSIIK, ACCENT_AMOHDASIIK, ACCENT_OLDYASSA) + allowed_accents = list(ACCENT_REPUBICLANSIIK, ACCENT_NAZIRASIIK, ACCENT_CREVAN, ACCENT_DASNRRASIIK, ACCENT_HIGHHARRSIIK, ACCENT_LOWHARRSIIK, ACCENT_AMOHDASIIK, ACCENT_NORTHRASNRR, ACCENT_OLDYASSA) zombie_type = SPECIES_ZOMBIE_TAJARA diff --git a/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm b/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm index d1261b03834..406b3e78455 100644 --- a/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm +++ b/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm @@ -28,7 +28,7 @@ heat_level_2 = 360 //RaceDefault 380 Default 400 heat_level_3 = 700 //RaceDefault 800 Default 1000 - allowed_accents = list(ACCENT_REPUBICLANSIIK, ACCENT_NAZIRASIIK, ACCENT_CREVAN, ACCENT_DASNRRASIIK, ACCENT_HIGHHARRSIIK, ACCENT_LOWHARRSIIK, ACCENT_AMOHDASIIK, + allowed_accents = list(ACCENT_REPUBICLANSIIK, ACCENT_NAZIRASIIK, ACCENT_CREVAN, ACCENT_DASNRRASIIK, ACCENT_HIGHHARRSIIK, ACCENT_LOWHARRSIIK, ACCENT_AMOHDASIIK, ACCENT_NORTHRASNRR, ACCENT_RURALDELVAHHI, ACCENT_NOMADDELVAHHI) stomach_capacity = 7 @@ -66,7 +66,7 @@ default_h_style = "M'sai Ears" secondary_langs = list(LANGUAGE_SIIK_MAAS, LANGUAGE_SIIK_TAJR, LANGUAGE_SIGN_TAJARA) - allowed_accents = list(ACCENT_REPUBICLANSIIK, ACCENT_NAZIRASIIK, ACCENT_CREVAN, ACCENT_DASNRRASIIK, ACCENT_HIGHHARRSIIK, ACCENT_LOWHARRSIIK, ACCENT_AMOHDASIIK) + allowed_accents = list(ACCENT_REPUBICLANSIIK, ACCENT_NAZIRASIIK, ACCENT_CREVAN, ACCENT_DASNRRASIIK, ACCENT_HIGHHARRSIIK, ACCENT_LOWHARRSIIK, ACCENT_AMOHDASIIK, ACCENT_NORTHRASNRR) max_nutrition_factor = 1.2 max_hydration_factor = 1.2 diff --git a/html/changelogs/alberyk-addaccent.yml b/html/changelogs/alberyk-addaccent.yml new file mode 100644 index 00000000000..a146ae06927 --- /dev/null +++ b/html/changelogs/alberyk-addaccent.yml @@ -0,0 +1,6 @@ +author: Alberyk, Wowzewow (Wezzy) + +delete-after: True + +changes: + - rscadd: "Added a Northern Ras'nrr Siik'maas accent." diff --git a/icons/accent_tags.dmi b/icons/accent_tags.dmi index 1907a7227a9..83a24f4de13 100644 Binary files a/icons/accent_tags.dmi and b/icons/accent_tags.dmi differ