mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-07 23:42:44 +00:00
## About The Pull Request This PR moves random name generation for species onto their languages. What does this mean? - For species with a predefined name list, such as Lizards and Moths, nothing. - For species without predefined name lists, such as Felinids, their names will now be randomly generated from their language's syllables.   (In the prefs menu:)  Why? - Well, we actually had some dead code that did this. All I did was fix it up and re-enable it. - Generates some pretty believable in-universe names for various languages that are lacking name lists. Obviously defined lists would be preferred, but until they are added, at least. - Moves some stuff off of species, which is always nice. - Also hopefully makes it a tad easier to work with name generation. There's now a standard framework for getting a random name for a mob, and for getting a random name based on a species. Misc: - Adds a generic `species_prototype` global, uses it in a lot of places in prefs code. - Makes `GLOB.species_list` init via the global defines - Deletes Language SS - Alphabetizes some instances of admin tooling using the list of all species IDs - Docs language stuff - Deletes random_skin_tone, it does pretty much nothin ## Changelog 🆑 Melbert refactor: Random Name Generation has been refactored. Report any instances of people having weird (or "Unknown") names. qol: Felinids, Slimepeople, Podpeople, and some other species without defined namelists now automatically generate names based on their primary language(s). qol: More non-human names can be generated in codewords (and other misc. areas) than just lizard names. /🆑
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
/datum/language/beachbum
|
|
name = "Beachtongue"
|
|
desc = "An ancient language from the distant Beach Planet. People magically learn to speak it under the influence of space drugs."
|
|
key = "u"
|
|
space_chance = 85
|
|
default_priority = 90
|
|
syllables = list(
|
|
"cowabunga", "rad", "radical", "dudes", "bogus", "weeed", "every",
|
|
"dee", "dah", "woah", "surf", "blazed", "high", "heinous", "day",
|
|
"brah", "bro", "blown", "catch", "body", "beach", "oooo", "twenty",
|
|
"shiz", "phiz", "wizz", "pop", "chill", "awesome", "dude", "it",
|
|
"wax", "stoked", "yes", "ding", "way", "no", "wicked", "aaaa",
|
|
"cool", "hoo", "wah", "wee", "man", "maaaaaan", "mate", "wick",
|
|
"oh", "ocean", "up", "out", "rip", "slide", "big", "stomp",
|
|
"weed", "pot", "smoke", "four-twenty", "shove", "wacky", "hah",
|
|
"sick", "slash", "spit", "stoked", "shallow", "gun", "party",
|
|
"heavy", "stellar", "excellent", "triumphant", "babe", "four",
|
|
"tail", "trim", "tube", "wobble", "roll", "gnarly", "epic",
|
|
)
|
|
icon_state = "beach"
|
|
always_use_default_namelist = TRUE
|