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

Removes silicon's knowledge of non human languages #76305

Merged
merged 1 commit into from
Jul 1, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 13 additions & 11 deletions code/modules/language/beachbum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@
key = "u"
space_chance = 85
default_priority = 90
syllables = list("cowabunga", "rad", "radical", "dudes", "bogus", "weeed", "every",
"dee", "dah", "woah", "surf", "blazed", "high", "heinous", "day",
"brah", "bro", "blown", "catch", "body", "beach", "oooo", "twenty",
"shiz", "phiz", "wizz", "pop", "chill", "awesome", "dude", "it",
"wax", "stoked", "yes", "ding", "way", "no", "wicked", "aaaa",
"cool", "hoo", "wah", "wee", "man", "maaaaaan", "mate", "wick",
"oh", "ocean", "up", "out", "rip", "slide", "big", "stomp",
"weed", "pot", "smoke", "four-twenty", "shove", "wacky", "hah",
"sick", "slash", "spit", "stoked", "shallow", "gun", "party",
"heavy", "stellar", "excellent", "triumphant", "babe", "four",
"tail", "trim", "tube", "wobble", "roll", "gnarly", "epic")
syllables = list(
"cowabunga", "rad", "radical", "dudes", "bogus", "weeed", "every",
"dee", "dah", "woah", "surf", "blazed", "high", "heinous", "day",
"brah", "bro", "blown", "catch", "body", "beach", "oooo", "twenty",
"shiz", "phiz", "wizz", "pop", "chill", "awesome", "dude", "it",
"wax", "stoked", "yes", "ding", "way", "no", "wicked", "aaaa",
"cool", "hoo", "wah", "wee", "man", "maaaaaan", "mate", "wick",
"oh", "ocean", "up", "out", "rip", "slide", "big", "stomp",
"weed", "pot", "smoke", "four-twenty", "shove", "wacky", "hah",
"sick", "slash", "spit", "stoked", "shallow", "gun", "party",
"heavy", "stellar", "excellent", "triumphant", "babe", "four",
"tail", "trim", "tube", "wobble", "roll", "gnarly", "epic",
)

icon_state = "beach"
4 changes: 2 additions & 2 deletions code/modules/language/calcic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
syllables = list(
"k", "ck", "ack", "ick", "cl", "tk", "sk", "isk", "tak",
"kl", "hs", "ss", "ks", "lk", "dk", "gk", "ka", "ska", "la", "pk",
"wk", "ak", "ik", "ip", "ski", "bk", "kb", "ta", "is", "it", "li", "di",
"ds", "ya", "sck", "crk", "hs", "ws", "mk", "aaa", "skraa", "skee", "hss",
"wk", "ak", "ik", "ip", "ski", "bk", "kb", "ta", "is", "it", "li", "di",
"ds", "ya", "sck", "crk", "hs", "ws", "mk", "aaa", "skraa", "skee", "hss",
"raa", "klk", "tk", "stk", "clk"
)
icon_state = "calcic"
Expand Down
26 changes: 10 additions & 16 deletions code/modules/language/language_holder.dm
Original file line number Diff line number Diff line change
Expand Up @@ -321,22 +321,16 @@ Key procs
blocked_languages = list(/datum/language/common = list(LANGUAGE_ATOM))

/datum/language_holder/synthetic
understood_languages = list(/datum/language/common = list(LANGUAGE_ATOM),
/datum/language/uncommon = list(LANGUAGE_ATOM),
/datum/language/machine = list(LANGUAGE_ATOM),
/datum/language/draconic = list(LANGUAGE_ATOM),
/datum/language/moffic = list(LANGUAGE_ATOM),
/datum/language/calcic = list(LANGUAGE_ATOM),
/datum/language/voltaic = list(LANGUAGE_ATOM),
/datum/language/nekomimetic = list(LANGUAGE_ATOM))
spoken_languages = list(/datum/language/common = list(LANGUAGE_ATOM),
/datum/language/uncommon = list(LANGUAGE_ATOM),
/datum/language/machine = list(LANGUAGE_ATOM),
/datum/language/draconic = list(LANGUAGE_ATOM),
/datum/language/moffic = list(LANGUAGE_ATOM),
/datum/language/calcic = list(LANGUAGE_ATOM),
/datum/language/voltaic = list(LANGUAGE_ATOM),
/datum/language/nekomimetic = list(LANGUAGE_ATOM))
understood_languages = list(
/datum/language/common = list(LANGUAGE_ATOM),
/datum/language/uncommon = list(LANGUAGE_ATOM),
/datum/language/machine = list(LANGUAGE_ATOM),
)
spoken_languages = list(
/datum/language/common = list(LANGUAGE_ATOM),
/datum/language/uncommon = list(LANGUAGE_ATOM),
/datum/language/machine = list(LANGUAGE_ATOM),
)

/datum/language_holder/moth
understood_languages = list(/datum/language/common = list(LANGUAGE_ATOM),
Expand Down
6 changes: 5 additions & 1 deletion code/modules/language/machine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
spans = list(SPAN_ROBOT)
key = "6"
flags = NO_STUTTER
syllables = list("beep","beep","beep","beep","beep","boop","boop","boop","bop","bop","dee","dee","doo","doo","hiss","hss","buzz","buzz","bzz","ksssh","keey","wurr","wahh","tzzz")
syllables = list(
"beep", "beep", "beep", "beep", "beep", "boop", "boop", "boop",
"bop", "bop", "dee", "dee", "doo", "doo", "hiss", "hss", "buzz",
"buzz", "bzz", "ksssh", "keey", "wurr", "wahh", "tzzz",
)
space_chance = 10
default_priority = 90

Expand Down
6 changes: 3 additions & 3 deletions code/modules/language/piratespeak.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
space_chance = 100
default_priority = 90
syllables = list(
"arr","ahoy","rum","aye","blimey","booty","bucko","grog","treasure",
"me","scallywag","landlubber","poopdeck","ye","avast",
"shiver","timbers","matey","swashbuckler"
"arr", "ahoy", "rum", "aye", "blimey", "booty", "bucko", "grog", "treasure",
"me", "scallywag", "landlubber", "poopdeck", "ye", "avast",
"shiver", "timbers", "matey", "swashbuckler"
)
icon_state = "pirate"
12 changes: 6 additions & 6 deletions code/modules/language/uncommon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
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"
"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