Skip to content

Commit

Permalink
Removes the restricted tag from several languages. (#4921)
Browse files Browse the repository at this point in the history
* Removes the restricted tag from several languages.

Title. Makes several racial languages available for selection in theory. Namely, Kriosan, Akula, and Naramad. Mar'Qua, Cht'Mant and Opifexee were left out due to a variety of factors - being generally unspeakable by non-members, being integrated, or just being generally unspeakable.

* Update code/datums/perks/backgrounds.dm

* Update code/datums/perks/racial.dm

* makes the shit actually work.
  • Loading branch information
cdb-is-not-good authored Jan 15, 2024
1 parent b04dac0 commit 1c974b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions code/datums/perks/backgrounds.dm
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ This is NOT for racial-specific perks, but rather specifically for general backg
options["Lingua Romana"] = LANGUAGE_ROMANA
options["Yassari"] = LANGUAGE_YASSARI
options["Latin"] = LANGUAGE_LATIN
options["Kriosan"] = LANGUAGE_KRIOSAN
options["Akula"] = LANGUAGE_AKULA
options["Narad Pidgin"] = LANGUAGE_MERP
var/choice = input(M,"Which language do you know?","Linguist Choice") as null|anything in options
if(src && choice)
M.add_language(choice)
Expand Down
3 changes: 3 additions & 0 deletions code/datums/perks/racial.dm
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@
options["Lingua Romana"] = LANGUAGE_ROMANA
options["Yassari"] = LANGUAGE_YASSARI
options["Latin"] = LANGUAGE_LATIN
options["Kriosan"] = LANGUAGE_KRIOSAN
options["Akula"] = LANGUAGE_AKULA
options["Narad Pidgin"] = LANGUAGE_MERP
var/choice = input(M,"Which language do you know?","Linguist Choice") as null|anything in options
if(src && choice)
M.add_language(choice)
Expand Down
5 changes: 1 addition & 4 deletions code/modules/mob/language/outsider.dm
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@
exclaim_verb = list("barks", "yips")
colour = "kriosan"
key = "k"
flags = RESTRICTED
has_written_form = FALSE //Lore reason - Creolized German and their ancient native language. Therefor their written language is 'dead' effectively.
partial_understanding = list(
LANGUAGE_EURO = 75,
Expand Down Expand Up @@ -148,7 +147,6 @@
exclaim_verb = list("roars")
colour = "akula"
key = "a"
flags = RESTRICTED
has_written_form = FALSE //Lore reason - Warrior culture, likely did not adapt much of a writing system since it was unneeded. Literacy / Acedmia done in foreign tongues.
partial_understanding = list(
LANGUAGE_JANA = 10,
Expand All @@ -166,9 +164,9 @@
speech_verb = list("warbles")
ask_verb = list("trills")
exclaim_verb = list("rythmically trills")
flags = RESTRICTED
colour = "marqua"
key = "q"
flags = RESTRICTED
has_written_form = TRUE
partial_understanding = list(
LANGUAGE_JANA = 20,
Expand Down Expand Up @@ -198,7 +196,6 @@
speech_verb = list("says", "clicks")
ask_verb = list("chirps")
exclaim_verb = list("croaks")
flags = RESTRICTED
colour = "rough"
key = "n"
has_written_form = TRUE
Expand Down

0 comments on commit 1c974b6

Please sign in to comment.