Files
S.P.L.U.R.T-Station-13/code/modules/language/arachnid.dm
2020-10-01 18:46:31 -05:00

16 lines
619 B
Plaintext

/datum/language/arachnid
name = "Rachnidian"
desc = "A language that exploits the multiple limbs of arachnids to do subtle dance like movements to communicate.\
A proper speaker's movements are quick and sharp enough to make audible whiffs and thumps however, which are intelligible over the radio."
speech_verb = "chitter"
ask_verb = "chitter"
exclaim_verb = "chitter"
key = "r"
flags = NO_STUTTER | LANGUAGE_HIDE_ICON_IF_NOT_UNDERSTOOD
icon_state = "arachnid"
/datum/language/arachnid/scramble(input)
. = prob(65) ? "<i>wiff</i>" : "<i>thump</i>"
. += (copytext(input, length(input)) == "?") ? "?" : "!"