Cultists of Nar-sie have their own language

This commit is contained in:
CitadelStationBot
2017-05-07 06:07:21 -05:00
parent 4a6b49d6a9
commit bbdcff81bb
13 changed files with 99 additions and 12 deletions
+19
View File
@@ -0,0 +1,19 @@
/datum/language/ratvar
name = "Ratvarian"
desc = "A timeless language full of power and incomprehensible to the unenlightened."
var/static/random_speech_verbs = list("clanks", "clinks", "clunks", "clangs")
ask_verb = "requests"
exclaim_verb = "proclaims"
whisper_verb = "imparts"
key = "r"
default_priority = 10
spans = list(SPAN_ROBOT)
icon_state = "ratvar"
/datum/language/ratvar/scramble(var/input)
. = text2ratvar(input)
/datum/language/ratvar/get_spoken_verb(msg_end)
if(!msg_end)
return pick(random_speech_verbs)
return ..()