Cultists of Nar-sie have their own language
This commit is contained in:
@@ -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 ..()
|
||||
Reference in New Issue
Block a user