Files
Bubberstation/code/modules/language/machine.dm
SkyratBot f46051921f [MIRROR] Removes silicon's knowledge of non human languages [MDB IGNORE] (#22169)
* 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>
2023-07-01 12:20:33 -07:00

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)