-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82a2fd5
commit 0a13aea
Showing
4 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/*////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
Syllable list compiled in this file based on work available at the following URL | ||
https://www.sttmedia.com/syllablefrequency-german | ||
*/////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
/datum/language/human/german | ||
name = LANGUAGE_HUMAN_GERMAN | ||
desc = "A language used on Earth." | ||
colour = "german" | ||
key = "10" | ||
shorthand = "Ger" | ||
space_chance = 30 | ||
partial_understanding = list( | ||
LANGUAGE_COMMON = 10, | ||
LANGUAGE_HUMAN_ARABIC = 5, | ||
LANGUAGE_HUMAN_INDIAN = 10, | ||
LANGUAGE_HUMAN_SELENIAN = 15, | ||
LANGUAGE_HUMAN_ENGLISH = 35, | ||
LANGUAGE_HUMAN_KOREAN = 5, | ||
LANGUAGE_SPACER = 20, | ||
) | ||
syllables = list( | ||
"an", "au", "be", "ch", "da", "de", "di", "ei", "el", "en", "er", "es", "ge", | ||
"he", "ht", "ic", "ie", "in", "it", "le", "li", "nd", "ne", "ng", "re", "sc", "se", | ||
"si", "st", "te", "un", "abe", "ach", "and", "auf", "auf", "ben", "ber", "che", "cht", | ||
"das", "den", "der", "die", "ein", "eit", "end", "ere", "ers", "ese", "gen", "hen", | ||
"ich", "ige", "ine", "ist", "lic", "lle", "men", "mit", "nde", "nen", "nge", "nic", | ||
"nte", "ren", "sch", "sei", "sen", "sic", "sie", "ste", "ten", "ter", "und", "ung", | ||
"ver", | ||
) | ||
has_written_form = TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/datum/language/human/korean | ||
name = LANGUAGE_HUMAN_KOREAN | ||
desc = "An ancient language used on Sol, specifically Earth, in one of the countries." | ||
colour = "korean" | ||
key = "9" | ||
shorthand = "Kor" | ||
space_chance = 100 | ||
partial_understanding = list( | ||
LANGUAGE_HUMAN_ENGLISH = 5, | ||
LANGUAGE_HUMAN_CHINESE = 25, | ||
LANGUAGE_HUMAN_ARABIC = 5, | ||
LANGUAGE_HUMAN_INDIAN = 10, | ||
LANGUAGE_HUMAN_IBERIAN = 5, | ||
LANGUAGE_HUMAN_RUSSIAN = 10, | ||
LANGUAGE_SPACER = 25 | ||
) | ||
syllables = list( | ||
"a", "ya", "eo", "yeo", "o", "yo", "u", "yu", "eu", "i", "giyeok", "nieum", "diguet", "rieul", "mieum", "bieup", | ||
"siot", "jeung", "hai", "cheiut", "kieuk", "tieut", "pieup", "heiut", "wi", "wo", "we", "wae", "ju", "ae", "ya", "wa", | ||
) | ||
has_written_form = TRUE |