mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
* Lizard language 🆑 coiax add: Restrictions on Lizardpeople using their native language on the station have been lifted by Centcom, in order to maximise worker productivity. The language's key is ",o". /🆑 - The language is added as part of the job equipping code, changing your species to lizard via xenobio will not magically teach you the language. - Normal human tongues are capable of speaking Unathi. - pAIs with translator and Librarians are capable of speaking and understanding Unathi. The design lead has instructed me to grant lizardpeople their own language, in order to increase paranoia in the crew. Also, it'll be funny to see how much people overreact to this. * Rename unathi to draconic
21 lines
843 B
Plaintext
21 lines
843 B
Plaintext
/datum/language/draconic
|
|
name = "Draconic"
|
|
desc = "The common language of lizard-people, composed of sibilant hisses and rattles."
|
|
speech_verb = "hisses"
|
|
ask_verb = "hisses"
|
|
exclaim_verb = "roars"
|
|
key = "o"
|
|
flags = TONGUELESS_SPEECH
|
|
space_chance = 40
|
|
syllables = list(
|
|
"za", "az", "ze", "ez", "zi", "iz", "zo", "oz", "zu", "uz", "zs", "sz",
|
|
"ha", "ah", "he", "eh", "hi", "ih", "ho", "oh", "hu", "uh", "hs", "sh",
|
|
"la", "al", "le", "el", "li", "il", "lo", "ol", "lu", "ul", "ls", "sl",
|
|
"ka", "ak", "ke", "ek", "ki", "ik", "ko", "ok", "ku", "uk", "ks", "sk",
|
|
"sa", "as", "se", "es", "si", "is", "so", "os", "su", "us", "ss", "ss",
|
|
"ra", "ar", "re", "er", "ri", "ir", "ro", "or", "ru", "ur", "rs", "sr",
|
|
"a", "a", "e", "e", "i", "i", "o", "o", "u", "u", "s", "s"
|
|
)
|
|
icon_state = "lizard"
|
|
default_priority = 90
|