mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Makes the name of the starsystem and station generic such that it can be modified in global.dm and replace the strings where it is used. This won't have an effect on Polaris itself, but makes changing the name much more simple for forks. Using string concat constants on the advice of Psi.
54 lines
1.2 KiB
Plaintext
54 lines
1.2 KiB
Plaintext
var/global/list/seen_citizenships = list()
|
|
var/global/list/seen_systems = list()
|
|
var/global/list/seen_factions = list()
|
|
var/global/list/seen_religions = list()
|
|
|
|
//Commenting this out for now until I work the lists it into the event generator/journalist/chaplain.
|
|
/proc/UpdateFactionList(mob/living/carbon/human/M)
|
|
/*if(M && M.client && M.client.prefs)
|
|
seen_citizenships |= M.client.prefs.citizenship
|
|
seen_systems |= M.client.prefs.home_system
|
|
seen_factions |= M.client.prefs.faction
|
|
seen_religions |= M.client.prefs.religion*/
|
|
return
|
|
|
|
var/global/list/citizenship_choices = list(
|
|
"Earth",
|
|
"Mars",
|
|
"Moghes",
|
|
"Ahdomai",
|
|
"Qerrbalak"
|
|
)
|
|
|
|
var/global/list/home_system_choices = list(
|
|
"Sol",
|
|
starsys_name,
|
|
"Nyx",
|
|
"Tau Ceti",
|
|
"Epsilon Ursae Minoris",
|
|
"S'randarr"
|
|
)
|
|
|
|
var/global/list/faction_choices = list(
|
|
"Sol Central",
|
|
"Vey Med",
|
|
"Einstein Engines",
|
|
"Free Trade Union",
|
|
"NanoTrasen",
|
|
"Ward-Takahashi GMB",
|
|
"Gilthari Exports",
|
|
"Grayson Manufactories Ltd.",
|
|
"Aether Atmospherics",
|
|
"Zeng-Hu Pharmaceuticals",
|
|
"Hesphaistos Industries"
|
|
)
|
|
|
|
var/global/list/religion_choices = list(
|
|
"Unitarianism",
|
|
"Hinduism",
|
|
"Buddhist",
|
|
"Islamic",
|
|
"Christian",
|
|
"Agnostic",
|
|
"Deist"
|
|
) |