Add new Slime & Vulpkanin names (#18396)

* Add new Slime & Vulpkanin names

Changes Slimes and Vulpkanin from syllable name creation to proper name lists

* Update names to use global lists

Title

* Fixes & Style update
This commit is contained in:
ParaGitV
2022-07-24 06:44:13 -07:00
committed by GitHub
parent 8befe47408
commit 84aa9e529f
8 changed files with 1345 additions and 0 deletions
+18
View File
@@ -207,6 +207,15 @@
"hel","ischt","far","wa","baram","iereng","tech","lach","sam","mak","lich","gen","or","ag","eck","gec","stag","onn", \
"bin","ket","jarl","vulf","einech","cresthz","azunein","ghzth")
/datum/language/vulpkanin/get_random_name(gender)
var/new_name
if(gender == FEMALE)
new_name = pick(GLOB.first_names_female_vulp)
else
new_name = pick(GLOB.first_names_male_vulp)
new_name += " " + pick(GLOB.last_names_vulp)
return new_name
/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."
@@ -306,6 +315,15 @@
flags = RESTRICTED | WHITELISTED
syllables = list("blob","plop","pop","bop","boop")
/datum/language/slime/get_random_name(gender)
var/new_name
if(gender == FEMALE)
new_name = pick(GLOB.first_names_female_slime)
else
new_name = pick(GLOB.first_names_male_slime)
new_name += " " + pick(GLOB.last_names_slime)
return new_name
/datum/language/grey
name = "Psionic Communication"
desc = "The grey's psionic communication, less potent version of their distant cousin's telepathy. Talk to other greys within a limited radius."