Makes nal'rasan more different from sign (#12081)

* Allows unique ending adverbs when hearing sign language without understanding

* fixes changelog mistake

Co-authored-by: TheGreyWolf <mc-casper@hotmail.dk>
This commit is contained in:
Casper3667
2021-06-25 18:59:29 -03:00
committed by GitHub
co-authored by TheGreyWolf
parent f22f5d8b28
commit e808f12c95
5 changed files with 41 additions and 28 deletions
+1
View File
@@ -15,6 +15,7 @@
var/list/whisper_verb = list("says quietly", "says softly", "whispers") // Optional. When not specified speech_verb + quietly/softly is used instead.
var/list/signlang_verb = list("signs") // list of emotes that might be displayed if this language has NONVERBAL or SIGNLANG flags
var/list/sing_verb = list("sings")
var/list/sign_adv_length = list(" briefly", " a short message", " a message", " a lengthy message", " a very lengthy message") // 5 messages changing depending on the length of the signed language. A space should be added before the sentence as shown
var/colour = "body" // CSS style to use for strings in this language.
var/written_style // CSS style used when writing language down, can't be written if null
var/key = "x" // Character used to speak in language eg. :o for Unathi.
+23 -19
View File
@@ -21,6 +21,8 @@
return new_name
// Unathi languages
/datum/language/unathi
name = LANGUAGE_UNATHI
short = "UNA"
@@ -47,6 +49,23 @@
partial_understanding = list(LANGUAGE_AZAZIBA = 25)
allow_accents = TRUE
/datum/language/unathi_azaziba
name = LANGUAGE_AZAZIBA
short = "AZA"
desc = "A language of Moghes consisting of a combination of spoken word and gesticulation. While waning since Moghes entered the galactic stage, it enjoys popular use by Unathi that never fell to the Hegemony's cultural dominance."
speech_verb = list("hisses")
ask_verb = list("hisses")
exclaim_verb = list("roars")
signlang_verb = list("signs", "gestures aggressively")
sing_verb = list("hisses")
colour = "soghun_alt"
written_style = "sintaazaziba"
key = "p"
flags = WHITELISTED | NONVERBAL
syllables = list("azs","zis","zau","azua","skiu","zuakz","izo","aei","ki","kut","zo")
partial_understanding = list(LANGUAGE_UNATHI = 50)
allow_accents = TRUE
// tajaran languages
/datum/language/tajaran
name = LANGUAGE_SIIK_MAAS
@@ -82,7 +101,8 @@
name = LANGUAGE_SIGN_TAJARA
desc = "A sign language developed by Adhomai hunters"
speech_verb = list("signs")
signlang_verb = list("signs", "flicks their ears", "gestures")
signlang_verb = list("moves their tail", "flicks their ears", "swivels their ears", "flicks their tail", "shifts their ears and tail")
sign_adv_length = list("", " briefly", " a few times", " several times in quick succession", " for a while")
sing_verb = null
colour = "i"
key = "i"
@@ -95,7 +115,8 @@
speech_verb = list("mrowls")
ask_verb = list("mrowls")
exclaim_verb = list("yowls")
signlang_verb = list("signs", "flicks their ears", "gestures")
signlang_verb = list("moves their tail", "flicks their ears", "swivels their ears", "flicks their tail", "shifts their ears and tail")
sign_adv_length = list("", " briefly", " a few times", " several times in quick succession", " for a while")
sing_verb = list("mrowmbles")
colour = "tajaran_signlang"
key = "w"
@@ -296,20 +317,3 @@
if(prob(70))
return "[pick(list("PBU","HIU","SINA","ARMA","OSI"))]-[rand(100, 999)]"
return pick(ai_names)
/datum/language/unathi_azaziba
name = LANGUAGE_AZAZIBA
short = "AZA"
desc = "A language of Moghes consisting of a combination of spoken word and gesticulation. While waning since Moghes entered the galactic stage, it enjoys popular use by Unathi that never fell to the Hegemony's cultural dominance."
speech_verb = list("hisses")
ask_verb = list("hisses")
exclaim_verb = list("roars")
signlang_verb = list("signs", "gestures aggressively")
sing_verb = list("hisses")
colour = "soghun_alt"
written_style = "sintaazaziba"
key = "p"
flags = WHITELISTED | NONVERBAL
syllables = list("azs","zis","zau","azua","skiu","zuakz","izo","aei","ki","kut","zo")
partial_understanding = list(LANGUAGE_UNATHI = 50)
allow_accents = TRUE