Files
GS13NG/code/modules/language/spider.dm
2020-09-30 19:20:44 -05:00

16 lines
611 B
Plaintext

/datum/language/spider
name = "Rachnidian"
desc = "A language that exploits the multiple limbs of spiders 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 = "spider"
/datum/language/spider/scramble(input)
. = prob(65) ? "<i>wiff</i>" : "<i>thump</i>"
. += (copytext(input, length(input)) == "?") ? "?" : "!"