diff --git a/code/modules/background/accent/human.dm b/code/modules/background/accent/human.dm index 5f0ad8556b2..8af25f4a97d 100644 --- a/code/modules/background/accent/human.dm +++ b/code/modules/background/accent/human.dm @@ -194,3 +194,10 @@ most notable for its elegant-sounding and evenly-paced method of speaking compared to rougher-sounding Coalition and frontier dialects. Liturgical Assunzionii is a small subset of this dialect, and is generally only spoken during \ Luceian services and can be distinguished by its use of archaic language." tag_icon = "assunzione" + +/datum/accent/visegrad + name = ACCENT_VISEGRAD + description = "The Visegradi accent is unique for that of a Solarian world, being a Tradeband accent with strong influences from the various languages of the Warsaw Pact on Earth. Decidedly harsh and characterized by unusual \ + and eclectic pronunciation, it can be fairly difficult to parse for those unfamiliar with it. This is only somewhat stymied by the fact that Visegradi people tend to speak very loudly, an adaptation necessitated by the need to \ + make oneself heard during the planet's torrential downpours." + tag_icon = "visegrad" diff --git a/code/modules/background/defines.dm b/code/modules/background/defines.dm index 8a97c528a13..38d234aa35c 100644 --- a/code/modules/background/defines.dm +++ b/code/modules/background/defines.dm @@ -84,6 +84,7 @@ #define ACCENT_GADPATHUR "Gadpathurian" #define ACCENT_PLUTO "Plutonian" #define ACCENT_ASSUNZIONE "Assunzionii" +#define ACCENT_VISEGRAD "Visegradi" #define ACCENT_REPUBICLANSIIK "Republican Siik'maas" #define ACCENT_NAZIRASIIK "Nazira Siik'maas" diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 1096a951e16..1835261d3b3 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -265,7 +265,7 @@ var/default_citizenship = CITIZENSHIP_BIESEL var/list/allowed_accents = list(ACCENT_CETI, ACCENT_GIBSON, ACCENT_SOL, ACCENT_MARTIAN, ACCENT_LUNA, ACCENT_VENUS, ACCENT_VENUSJIN, ACCENT_JUPITER, ACCENT_COC, ACCENT_ELYRA, ACCENT_ERIDANI, ACCENT_ERIDANIREINSTATED, ACCENT_ERIDANIDREG, ACCENT_VYSOKA, ACCENT_HIMEO, ACCENT_PHONG, ACCENT_SILVERSUN_ORIGINAL, ACCENT_SILVERSUN_EXPATRIATE, ACCENT_DOMINIA_HIGH, ACCENT_DOMINIA_VULGAR, ACCENT_KONYAN, ACCENT_EUROPA, ACCENT_EARTH, ACCENT_NCF, ACCENT_FISANDUH, ACCENT_GADPATHUR, - ACCENT_PLUTO, ACCENT_ASSUNZIONE) + ACCENT_PLUTO, ACCENT_ASSUNZIONE, ACCENT_VISEGRAD) var/default_accent = ACCENT_CETI var/zombie_type //What zombie species they become var/list/character_color_presets diff --git a/html/changelogs/dansemacabre-shoeins.yml b/html/changelogs/dansemacabre-shoeins.yml new file mode 100644 index 00000000000..38538f11b06 --- /dev/null +++ b/html/changelogs/dansemacabre-shoeins.yml @@ -0,0 +1,41 @@ +################################ +# 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: DanseMacabre + +# 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 a Visegradi accent." diff --git a/icons/accent_tags.dmi b/icons/accent_tags.dmi index f9a879c3fdd..24466fc42d5 100644 Binary files a/icons/accent_tags.dmi and b/icons/accent_tags.dmi differ