mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 12:56:10 +01:00
7265630dde
Turned a ton of unmanaged globals into managed globals. Refactored some UT output. Removed some unused things, including vars. Added a test to ensure people don't keep adding new unmanaged vars.
22 lines
1.1 KiB
Plaintext
22 lines
1.1 KiB
Plaintext
GLOBAL_LIST_INIT(ai_names, world.file2list("config/names/ai.txt"))
|
|
GLOBAL_LIST_INIT(ninja_titles, world.file2list("config/names/ninjatitle.txt"))
|
|
GLOBAL_LIST_INIT(ninja_names, world.file2list("config/names/ninjaname.txt"))
|
|
GLOBAL_LIST_INIT(first_names_male, world.file2list("config/names/first_male.txt"))
|
|
GLOBAL_LIST_INIT(first_names_female, world.file2list("config/names/first_female.txt"))
|
|
GLOBAL_LIST_INIT(last_names, world.file2list("config/names/last.txt"))
|
|
GLOBAL_LIST_INIT(verbs, world.file2list("config/names/verbs.txt"))
|
|
GLOBAL_LIST_INIT(adjectives, world.file2list("config/names/adjectives.txt"))
|
|
|
|
GLOBAL_LIST_INIT(greek_letters, list(
|
|
"Alpha", "Beta", "Gamma", "Delta", "Epsilon", "Zeta", "Eta",
|
|
"Theta", "Iota", "Kappa", "Lambda", "Mu", "Nu", "Xi", "Omicron",
|
|
"Pi", "Rho", "Sigma", "Tau", "Upsilon", "Phi", "Chi", "Psi", "Omega"
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(nato_phonetic_letters, list(
|
|
"Alfa", "Bravo", "Charlie", "Delta", "Echo", "Foxtrot", "Golf",
|
|
"Hotel", "India", "Juliett", "Kilo", "Lima", "Mike", "November",
|
|
"Oscar", "Papa", "Quebec", "Romeo", "Sierra", "Tango", "Uniform",
|
|
"Victor", "Whiskey", "X-ray", "Yankee", "Zulu"
|
|
))
|