Files
Bubberstation/code/modules/language/uncommon.dm
John Willard a4b4f738d0 Removes silicon's knowledge of non human languages (#76305)
## About The Pull Request

Silicon now only know Common, Uncommon (Humans with Foreigner quirk) and
Robotic.
I also made the indentation in languages consistent because it bugged me
lol.

## Why It's Good For The Game

1. There are currently many ways of learning languages, which devalues
the language system as a whole. There's no real reason to use a language
when anyone potentially understands what you're saying anyways.
2. Players of these non-human Species should be able to use their
language to have hidden discussions in the open (you know, what
languages were meant for), and Silicons should be included in this,
especially since Silicon are generally on Asimov where they do not care
for non-human life, giving non-humans SOMETHING over Silicon would be
nice.

## Changelog

🆑
balance: Silicon now only know Common, Uncommon and Robotic languages.
/🆑
2023-07-01 15:27:56 +01:00

17 lines
564 B
Plaintext

/datum/language/uncommon
name = "Galactic Uncommon"
desc = "The second-most spoken Human language."
key = "!"
flags = TONGUELESS_SPEECH
space_chance = 50
syllables = list(
"ba", "be", "bo", "ca", "ce", "co", "da", "de", "do",
"fa", "fe", "fo", "ga", "ge", "go", "ha", "he", "ho",
"ja", "je", "jo", "ka", "ke", "ko", "la", "le", "lo",
"ma", "me", "mo", "na", "ne", "no", "ra", "re", "ro",
"sa", "se", "so", "ta", "te", "to", "va", "ve", "vo",
"xa", "xe", "xo", "ya", "ye", "yo", "za", "ze", "zo"
)
icon_state = "galuncom"
default_priority = 90