mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
## About The Pull Request This PR adds a list of 100 1920s English/Welsh names for Maids in the Mirror. The names have been sourced from and attributed to the United Kingdom's Office for National Statistics. Admittedly I haven't worked with licenses much, so please correct me if I've gotten the attribution wrong. Example names are as follows: "Mirror Maid Mildred" "Mirror Maid Gertrude" "Mirror Maid Gwendoline" I've attempted to code this such that names only get reused after all are randomly gone through. ## Why It's Good For The Game It is currently difficult to distinguish between several Maids in the Mirror, and this PR attempts to remedy that in a thematically appropriate way. Additionally, this PR may address issue #96587. (While this doesn't provide mob numbers specifically, it does make their names distinct.) ## Changelog 🆑 add: Maids in the Mirror now get random 1920s English/Welsh names. /🆑 --------- Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
46 lines
3.5 KiB
Plaintext
46 lines
3.5 KiB
Plaintext
GLOBAL_LIST_INIT(ai_names, world.file2list("strings/names/ai.txt"))
|
|
GLOBAL_LIST_INIT(cargorilla_names, world.file2list("strings/names/cargorilla.txt"))
|
|
GLOBAL_LIST_INIT(carp_names, world.file2list("strings/names/carp.txt"))
|
|
GLOBAL_LIST_INIT(clown_names, world.file2list("strings/names/clown.txt"))
|
|
GLOBAL_LIST_INIT(commando_names, world.file2list("strings/names/death_commando.txt"))
|
|
GLOBAL_LIST_INIT(cyberauth_names, world.file2list("strings/names/cyberauth.txt"))
|
|
GLOBAL_LIST_INIT(ethereal_names, world.file2list("strings/names/ethereal.txt"))
|
|
GLOBAL_LIST_INIT(first_names_female, world.file2list("strings/names/first_female.txt"))
|
|
GLOBAL_LIST_INIT(first_names_male, world.file2list("strings/names/first_male.txt"))
|
|
GLOBAL_LIST_INIT(first_names, world.file2list("strings/names/first.txt"))
|
|
GLOBAL_LIST_INIT(golem_names, world.file2list("strings/names/golem.txt"))
|
|
GLOBAL_LIST_INIT(guardian_fantasy_surnames, world.file2list("strings/names/guardian_tarot.txt"))
|
|
GLOBAL_LIST_INIT(guardian_first_names, world.file2list("strings/names/guardian_descriptions.txt"))
|
|
GLOBAL_LIST_INIT(guardian_tech_surnames, world.file2list("strings/names/guardian_gamepieces.txt"))
|
|
GLOBAL_LIST_INIT(hacker_aliases, world.file2list("strings/names/hackers.txt"))
|
|
GLOBAL_LIST_INIT(hive_names, world.file2list("strings/names/hive_names.txt"))
|
|
GLOBAL_LIST_INIT(last_names, world.file2list("strings/names/last.txt"))
|
|
GLOBAL_LIST_INIT(lizard_names_female, world.file2list("strings/names/lizard_female.txt"))
|
|
GLOBAL_LIST_INIT(lizard_names_male, world.file2list("strings/names/lizard_male.txt"))
|
|
GLOBAL_LIST_INIT(martial_prefix, world.file2list("strings/names/martial_prefix.txt"))
|
|
GLOBAL_LIST_INIT(megacarp_first_names, world.file2list("strings/names/megacarp1.txt"))
|
|
GLOBAL_LIST_INIT(megacarp_last_names, world.file2list("strings/names/megacarp2.txt"))
|
|
GLOBAL_LIST_INIT(mime_names, world.file2list("strings/names/mime.txt"))
|
|
GLOBAL_LIST_INIT(mirror_maid_names, world.file2list("strings/names/mirror_maid.txt"))
|
|
GLOBAL_LIST_INIT(moth_first, world.file2list("strings/names/moth_first.txt"))
|
|
GLOBAL_LIST_INIT(moth_last, world.file2list("strings/names/moth_last.txt"))
|
|
GLOBAL_LIST_INIT(nightmare_names, world.file2list("strings/names/nightmare.txt"))
|
|
GLOBAL_LIST_INIT(ninja_names, world.file2list("strings/names/ninjaname.txt"))
|
|
GLOBAL_LIST_INIT(ninja_titles, world.file2list("strings/names/ninjatitle.txt"))
|
|
GLOBAL_LIST_INIT(operative_aliases, world.file2list("strings/names/operative_alias.txt"))
|
|
GLOBAL_LIST_INIT(plasmaman_names, world.file2list("strings/names/plasmaman.txt"))
|
|
GLOBAL_LIST_INIT(posibrain_names, world.file2list("strings/names/posibrain.txt"))
|
|
GLOBAL_LIST_INIT(religion_names, world.file2list("strings/names/religion.txt"))
|
|
GLOBAL_LIST_INIT(station_names, world.file2list("strings/station_names.txt"))
|
|
GLOBAL_LIST_INIT(station_numerals, greek_letters + phonetic_alphabet + numbers_as_words + generate_number_strings())
|
|
GLOBAL_LIST_INIT(station_prefixes, world.file2list("strings/station_prefixes.txt"))
|
|
GLOBAL_LIST_INIT(station_suffixes, world.file2list("strings/station_suffixes.txt"))
|
|
GLOBAL_LIST_INIT(syndicate_monkey_names, world.file2list("strings/names/syndicate_monkey.txt"))
|
|
GLOBAL_LIST_INIT(vampire_house_names, world.file2list("strings/names/vampire_house_names.txt"))
|
|
GLOBAL_LIST_INIT(voidwalker_names, world.file2list("strings/names/voidwalker.txt"))
|
|
GLOBAL_LIST_INIT(wizard_first, world.file2list("strings/names/wizardfirst.txt"))
|
|
GLOBAL_LIST_INIT(wizard_second, world.file2list("strings/names/wizardsecond.txt"))
|
|
|
|
//loaded on startup because of "
|
|
//would include in rsc if ' was used
|