mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
89 lines
2.7 KiB
Plaintext
89 lines
2.7 KiB
Plaintext
/*
|
|
Datum based languages. Easily editable and modular.
|
|
*/
|
|
|
|
/datum/language
|
|
var/name = "an unknown language" // Fluff name of language if any.
|
|
var/desc = "A language." // Short description for 'Check Languages'.
|
|
var/speech_verb = "says" // 'says', 'hisses', 'farts'.
|
|
var/colour = "say_quote" // CSS style to use for strings in this language.
|
|
var/key = "x" // Character used to speak in language eg. :o for Unathi.
|
|
var/flags = 0 // Various language flags.
|
|
var/native // If set, non-native speakers will have trouble speaking.
|
|
|
|
/datum/language/unathi
|
|
name = "Sinta'unathi"
|
|
desc = "The common language of Moghes, composed of sibilant hisses and rattles. Spoken natively by Unathi."
|
|
speech_verb = "hisses"
|
|
colour = "soghun"
|
|
key = "una"
|
|
flags = WHITELISTED
|
|
|
|
/datum/language/tajaran
|
|
name = "Siik'tajr"
|
|
desc = "An expressive language that combines yowls and chirps with posture, tail and ears. Native to the Tajaran."
|
|
speech_verb = "mrowls"
|
|
colour = "tajaran"
|
|
key = "taj"
|
|
flags = WHITELISTED
|
|
|
|
/datum/language/skrell
|
|
name = "Skrellian"
|
|
desc = "A melodic and complex language spoken by the Skrell of Qerrbalak. Some of the notes are inaudible to humans."
|
|
speech_verb = "warbles"
|
|
colour = "skrell"
|
|
key = "skr"
|
|
flags = WHITELISTED
|
|
|
|
/datum/language/vox
|
|
name = "Vox-pidgin"
|
|
desc = "The common tongue of the various Vox ships making up the Shoal. It sounds like chaotic shrieking to everyone else."
|
|
speech_verb = "shrieks"
|
|
colour = "vox"
|
|
key = "vox"
|
|
flags = RESTRICTED
|
|
|
|
/*
|
|
/datum/language/human
|
|
name = "Sol Common"
|
|
desc = "A bastardized hybrid of informal English and elements of Mandarin Chinese; the common language of the Sol system."
|
|
key = "hum"
|
|
flags = RESTRICTED
|
|
|
|
// Galactic common languages (systemwide accepted standards).
|
|
/datum/language/trader
|
|
name = "Tradeband"
|
|
desc = "Maintained by the various trading cartels in major systems, this elegant, structured language is used for bartering and bargaining."
|
|
speech_verb = "enunciates"
|
|
key = "tra"
|
|
|
|
/datum/language/gutter
|
|
name = "Gutter"
|
|
desc = "Much like Standard, this crude pidgin tongue descended from numerous languages and serves as Tradeband for criminal elements."
|
|
speech_verb = "growls"
|
|
key = "gut"
|
|
*/
|
|
|
|
// Language handling.
|
|
/mob/proc/add_language(var/language)
|
|
|
|
for(var/datum/language/L in languages)
|
|
if(L && L.name == language)
|
|
return 0
|
|
|
|
var/datum/language/new_language = all_languages[language]
|
|
|
|
if(!istype(new_language,/datum/language))
|
|
return 0
|
|
|
|
languages += new_language
|
|
return 1
|
|
|
|
/mob/proc/remove_language(var/rem_language)
|
|
|
|
for(var/datum/language/L in languages)
|
|
if(L && L.name == rem_language)
|
|
languages -= L
|
|
return 1
|
|
|
|
return 0 |