mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 03:16:34 +01:00
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
// todo: dynamic language creation system we shouldn't have this
|
|
//For your event purposes.
|
|
/datum/prototype/language/occursus
|
|
id = LANGUAGE_ID_EVENT_1
|
|
name = LANGUAGE_EVENT1
|
|
desc = "The Powers That Be have seen it fit to grace you with a special language that sounds like... something. This description should be overridden by the time you see this."
|
|
speech_verb = "says"
|
|
ask_verb = "asks"
|
|
exclaim_verb = "shouts"
|
|
colour = "warning"
|
|
key = "]"
|
|
language_flags = LANGUAGE_RESTRICTED
|
|
syllables = list("chan","ange","thi","se")
|
|
|
|
//for your antag purposes.
|
|
/datum/prototype/language/minbus
|
|
id = LANGUAGE_ID_EVENT_2
|
|
name = LANGUAGE_MINBUS
|
|
desc = "The Powers That Be have seen it fit to grace you with a special language that sounds like Russian for some reason."
|
|
speech_verb = "says"
|
|
ask_verb = "asks"
|
|
exclaim_verb = "shouts"
|
|
colour = "deadsay"
|
|
language_flags = LANGUAGE_RESTRICTED
|
|
key = "\["
|
|
syllables = list("rus","zem","ave","groz","ski","ska","ven","konst","pol","lin","svy",
|
|
"danya","da","mied","zan","das","krem","myka","cyka","blyat","to","st","no","na","ni",
|
|
"ko","ne","en","po","ra","li","on","byl","cto","eni","ost","ol","ego","ver","stv","pro")
|
|
|