Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Russian Patois #416

Merged
merged 6 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion code/__DEFINES/language.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define LANGUAGE_JAPANESE "Japanese"
#define LANGUAGE_CHINESE "Chinese"
#define LANGUAGE_RUSSIAN "Russian"
#define LANGUAGE_RUSPATOIS "Russian Patois"
#define LANGUAGE_GERMAN "German"
#define LANGUAGE_SPANISH "Spanish"
#define LANGUAGE_TSL "Tactical Sign Language"
Expand All @@ -16,7 +17,7 @@

#define LANGUAGE_TELEPATH "Telepath Implant"

#define ALL_HUMAN_LANGUAGES list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_CHINESE, LANGUAGE_RUSSIAN, LANGUAGE_GERMAN, LANGUAGE_SPANISH)
#define ALL_HUMAN_LANGUAGES list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_CHINESE, LANGUAGE_RUSSIAN, LANGUAGE_GERMAN, LANGUAGE_SPANISH, LANGUAGE_RUSPATOIS)

#define ALL_SYNTH_LANGUAGES list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_CHINESE, LANGUAGE_RUSSIAN, LANGUAGE_GERMAN, LANGUAGE_SPANISH, LANGUAGE_YAUTJA, LANGUAGE_XENOMORPH)

Expand Down
5 changes: 5 additions & 0 deletions code/modules/character_traits/languages.dm
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
applyable = TRUE
cost = 1

/datum/character_trait/language/ruspatois
language_name = LANGUAGE_RUSPATOIS
applyable = TRUE
cost = 1

/datum/character_trait/language/english
language_name = LANGUAGE_ENGLISH
applyable = TRUE
Expand Down
13 changes: 11 additions & 2 deletions code/modules/mob/language/languages.dm
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@

syllables = list("al", "an", "bi", "vye", "vo", "go", "dye", "yel", "en", "yer", "yet", "ka", "ko", "la", "ly", "lo", "l", "na", "nye", "ny", "no", "ov", "ol", "on", "or", "slog", "ot", "po", "pr", "ra", "rye", "ro", "st", "ta", "tye", "to", "t", "at", "bil", "vyer", "yego", "yeny", "yenn", "yest", "kak", "ln", "ova", "ogo", "oro", "ost", "oto", "pry", "pro", "sta", "stv", "tor", "chto", "eto", "rus", "nar", "arya", "mol")

/datum/language/patois
name = LANGUAGE_RUSPATOIS
desc = "Russian patois spoken by Eastern Europeans residing for decades within the UA and TWE. Largely incompatible with contemporary Russian."
speech_verb = "says"
color = "ruspatois"
key = "9"

syllables = list("che", "de", "da", "du", "yo", "yu", "ty", "yon", "ka", "ke", "don", "yed", "mas", "kyen", "no", "ua", "khe", "kha", "o", "na", "has", "ya", "yen", "tra", "blo", "kho", "est", "soi", "dos", "par", "dya", "tan", "ey", "sa", "kom", "nyo", "min", "svi", "yan", "suy", "des", "ven", "vo", "ro", "ku", "tak", "u", "ov", "so", "ri", "kab", "ten", "nos", "mi", "an", "su", "men", "ma", "dro", "li", "ak", "om", "er", "ir", "ar", "ote", "op", "ki", "to")

/datum/language/german
name = LANGUAGE_GERMAN
desc = "Standard High-German, a language spoken mostly in Central Europe, and by German immigrants elsewhere."
Expand Down Expand Up @@ -113,7 +122,7 @@
ask_verb = "chimpers"
exclaim_verb = "screeches"
color = "monkey"
key = "9"
key = null

/datum/language/xenomorph
name = LANGUAGE_XENOMORPH
Expand Down Expand Up @@ -203,5 +212,5 @@
ask_verb = "resonates"
exclaim_verb = "resonates"
color = "tajaran"
key = "7"
key = "8"
flags = RESTRICTED|HIVEMIND
1 change: 1 addition & 0 deletions code/stylesheet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ h1.alert, h2.alert {color: #000000;}
.rough {font-family: trebuchet-ms, cursive, sans-serif;}
.german {color: #858F1E; font-family: 'Times New Roman', Times, serif}
.spanish {color: #CF982B;}
.ruspatois {color: #258687}
.japanese {color: #0047A0}
.commando {color: #FE9B24; font-style: bold;}
.say_quote {font-family: Georgia, Verdana, sans-serif;}
Expand Down
3 changes: 3 additions & 0 deletions tgui/packages/tgui-panel/styles/goon/chat-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1402,6 +1402,9 @@ em {
.chinese {
color: #fe1919;
}
.ruspatois {
color: #258687;
}

.zombie {
color: #2dacb1;
Expand Down
4 changes: 4 additions & 0 deletions tgui/packages/tgui-panel/styles/goon/chat-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1429,6 +1429,10 @@ h2.alert {
color: #fe1919;
}

.ruspatois {
color: #258687;
}

.zombie {
color: #216163;
font-style: italic;
Expand Down
Loading