mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 09:42:29 +00:00
* Removes silicon's knowledge of non human languages * skyrat edit * this is on par with upstream --------- Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com>
21 lines
618 B
Plaintext
21 lines
618 B
Plaintext
/datum/language/machine
|
|
name = "Encoded Audio Language"
|
|
desc = "An efficient language of encoded tones developed by synthetics and cyborgs."
|
|
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",
|
|
)
|
|
space_chance = 10
|
|
default_priority = 90
|
|
|
|
icon_state = "eal"
|
|
|
|
/datum/language/machine/get_random_name()
|
|
if(prob(70))
|
|
return "[pick(GLOB.posibrain_names)]-[rand(100, 999)]"
|
|
return pick(GLOB.ai_names)
|