mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-04-12 15:01:02 +01:00
Loremaster discussion concluded that the KHI faction is out-of-scope of our current intended theme and setting. While we do not remove them outright, encouraging new players and characters to originate from KHI homeworld or be part of their faction makes things needlessly complicated and troublesome. Therefore, KHI remains as something for the ATC system to be referenced and as part of technologies, but player characters ideally do not hold personal relation to them at this time.
132 lines
3.1 KiB
Plaintext
132 lines
3.1 KiB
Plaintext
var/global/list/seen_citizenships = list()
|
|
var/global/list/seen_systems = list()
|
|
var/global/list/seen_factions = list()
|
|
var/global/list/seen_antag_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
|
|
|
|
// VOREStation Edits Start
|
|
var/global/list/citizenship_choices = list(
|
|
"Greater Human Diaspora",
|
|
"Commonwealth of Sol-Procyon",
|
|
"Skrell Consensus",
|
|
"Moghes Hegemony",
|
|
"Tajaran Diaspora",
|
|
"Unitary Alliance of Salthan Fyrds",
|
|
"Elysian Colonies",
|
|
"Third Ares Confederation",
|
|
"Teshari Expeditionary Fleet",
|
|
"Altevian Hegemony",
|
|
"Kosaky Fleets"
|
|
)
|
|
|
|
var/global/list/home_system_choices = list(
|
|
"Virgo-Erigone",
|
|
"Sol",
|
|
"Earth, Sol",
|
|
"Luna, Sol",
|
|
"Mars, Sol",
|
|
"Venus, Sol",
|
|
"Titan, Sol",
|
|
"Toledo, New Ohio",
|
|
"The Pact, Myria",
|
|
"Kishar, Alpha Centauri",
|
|
"Anshar, Alpha Centauri",
|
|
"Heaven Complex, Alpha Centauri",
|
|
"Procyon",
|
|
"Altair",
|
|
"Kara, Vir",
|
|
"Sif, Vir",
|
|
"Brinkburn, Nyx",
|
|
"Binma, Tau Ceti",
|
|
"Qerr'balak, Qerr'valis",
|
|
"Epsilon Ursae Minoris",
|
|
"Meralar, Rarkajar",
|
|
"Tal, Vilous",
|
|
"Menhir, Alat-Hahr",
|
|
"Altam, Vazzend",
|
|
"Uh'Zata, Kelezakata",
|
|
"Moghes, Uuoea-Esa",
|
|
"Xohok, Uuoea-Esa",
|
|
"Varilak, Antares",
|
|
"Sanctorum, Sanctum",
|
|
"Infernum, Sanctum",
|
|
"Abundance in All Things Serene, Beta-Carnelium Ventrum",
|
|
"Jorhul, Barkalis",
|
|
"Shelf Flotilla",
|
|
"Ue-Orsi Flotilla"
|
|
)
|
|
|
|
var/global/list/faction_choices = list(
|
|
"NanoTrasen Incorporated",
|
|
"Hephaestus Industries",
|
|
"Vey-Medical",
|
|
"Zeng-Hu Pharmaceuticals",
|
|
"Ward-Takahashi GMC",
|
|
"Bishop Cybernetics",
|
|
"Morpheus Cyberkinetics",
|
|
"Xion Manufacturing Group",
|
|
"Free Trade Union",
|
|
"Major Bill's Transportation",
|
|
"Ironcrest Transport Group",
|
|
"Grayson Manufactories Ltd.",
|
|
"Aether Atmospherics",
|
|
"Focal Point Energistics",
|
|
"StarFlight Inc.",
|
|
"Oculum Broadcasting Network",
|
|
"Periphery Post",
|
|
"Free Anur Tribune",
|
|
"Centauri Provisions",
|
|
"Einstein Engines",
|
|
"Wulf Aeronautics",
|
|
"Gilthari Exports",
|
|
"Coyote Salvage Corp.",
|
|
"Chimera Genetics Corp.",
|
|
"Independent Pilots Association",
|
|
"Local System Defense Force",
|
|
"United Solar Defense Force",
|
|
"Proxima Centauri Risk Control",
|
|
"HIVE Security",
|
|
"Stealth Assault Enterprises"
|
|
)
|
|
// VOREStation Edits Stop
|
|
|
|
var/global/list/antag_faction_choices = list() //Should be populated after brainstorming. Leaving as blank in case brainstorming does not occur.
|
|
|
|
var/global/list/antag_visiblity_choices = list(
|
|
"Hidden",
|
|
"Shared",
|
|
"Known"
|
|
)
|
|
|
|
var/global/list/religion_choices = list(
|
|
"Unitarianism",
|
|
"Neopaganism",
|
|
"Islam",
|
|
"Christianity",
|
|
"Judaism",
|
|
"Hinduism",
|
|
"Buddhism",
|
|
"Pleromanism",
|
|
"Spectralism",
|
|
"Phact Shintoism",
|
|
"Kishari Faith",
|
|
"Hauler Faith",
|
|
"Nock",
|
|
"Singulitarian Worship",
|
|
"Xilar Qall",
|
|
"Tajr-kii Rarkajar",
|
|
"Agnosticism",
|
|
"Deism",
|
|
"Neo-Moreauism",
|
|
"Orthodox Moreauism"
|
|
)
|