mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-20 11:32:51 +01:00
4765107a77
-KHI -Virgo (we're not in Virgo space) -Auream (we don't have space elves here)
892 lines
38 KiB
Plaintext
892 lines
38 KiB
Plaintext
//Datums for different companies that can be used by busy_space, VR edition
|
||
|
||
// Some of these intentionally copy from busy_space/organizations.dm, which is disabled in our server.
|
||
//////////////////////////////////////////////////////////////////////////////////
|
||
|
||
//Datums for different companies that can be used by busy_space
|
||
/datum/lore/organization
|
||
var/name = "" // Organization's name
|
||
var/short_name = "" // Organization's shortname (NanoTrasen for "NanoTrasen Incorporated")
|
||
var/acronym = "" // Organization's acronym, e.g. 'NT' for NanoTrasen'.
|
||
var/desc = "" // One or two paragraph description of the organization, but only current stuff. Currently unused.
|
||
var/history = "" // Historical discription of the organization's origins Currently unused.
|
||
var/work = "" // Short description of their work, eg "an arms manufacturer"
|
||
var/headquarters = "" // Location of the organization's HQ. Currently unused.
|
||
var/motto = "" // A motto/jingle/whatever, if they have one. Currently unused.
|
||
|
||
var/list/ship_prefixes = list() //Some might have more than one! Like NanoTrasen. Value is the mission they perform, e.g. ("ABC" = "mission desc")
|
||
var/list/ship_names = list( //Names of spaceships. This is a mostly generic list that all the other organizations inherit from if they don't have anything better.
|
||
"Kestrel",
|
||
"Beacon",
|
||
"Signal",
|
||
"Freedom",
|
||
"Glory",
|
||
"Axiom",
|
||
"Eternal",
|
||
"Harmony",
|
||
"Light",
|
||
"Discovery",
|
||
"Endeavour",
|
||
"Explorer",
|
||
"Swift",
|
||
"Dragonfly",
|
||
"Ascendant",
|
||
"Tenacious",
|
||
"Pioneer",
|
||
"Hawk",
|
||
"Haste",
|
||
"Radiant",
|
||
"Luminous"
|
||
)
|
||
var/list/destination_names = list() //Names of static holdings that the organization's ships visit regularly.
|
||
var/autogenerate_destination_names = TRUE
|
||
|
||
/datum/lore/organization/New()
|
||
..()
|
||
if(autogenerate_destination_names) // Lets pad out the destination names.
|
||
var/i = rand(6, 10)
|
||
var/list/star_names = list(
|
||
"Sol", "Alpha Centauri", "Sirius", "Vega", "Regulus", "Vir", "Algol", "Aldebaran", "Vilous", "Sanctum", "Qerr'Vallis", "Kataigal", "Antares",
|
||
"Delta Doradus", "Menkar", "Geminga", "Elnath", "Gienah", "Mu Leporis", "Nyx", "Tau Ceti", "Virgo-Erigone", "Uueoa-Esa", "Vazzend", "Kastra-71",
|
||
"Wazn", "Alphard", "Phact", "Altair", "El", "Eutopia", "Qerr'valis", "Qerrna-Lakirr", "Rarkajar", "the Almach Rim")
|
||
var/list/destination_types = list("dockyard", "station", "vessel", "waystation", "telecommunications satellite", "spaceport", "distress beacon", "anomaly", "colony", "outpost")
|
||
while(i)
|
||
destination_names.Add("a [pick(destination_types)] in [pick(star_names)]")
|
||
i--
|
||
|
||
//////////////////////////////////////////////////////////////////////////////////
|
||
|
||
// TSCs
|
||
/datum/lore/organization/tsc/nanotrasen
|
||
name = "NanoTrasen Incorporated"
|
||
short_name = "NanoTrasen"
|
||
acronym = "NT"
|
||
desc = "NanoTrasen is one of the foremost research and development companies in SolGov space. \
|
||
Originally focused on consumer products, their swift move into the field of Phoron has lead to \
|
||
them being the foremost experts on the substance and its uses. In the modern day, NanoTrasen prides \
|
||
itself on being an early adopter to as many new technologies as possible, often offering the newest \
|
||
products to their employees. In an effort to combat complaints about being 'guinea pigs', Nanotrasen \
|
||
also offers one of the most comprehensive medical plans in SolGov space, up to and including cloning \
|
||
and therapy.\
|
||
<br><br>\
|
||
NT's most well known products are its phoron based creations, especially those used in Cryotherapy. \
|
||
It also boasts an prosthetic line, which is provided to its employees as needed, and is used as an incentive \
|
||
for newly tested posibrains to remain with the company."
|
||
history = "" // To be written someday.
|
||
work = "research giant"
|
||
headquarters = "Luna"
|
||
motto = ""
|
||
|
||
ship_prefixes = list("NSV" = "exploration", "NTV" = "hauling", "NDV" = "patrol", "NRV" = "emergency response")
|
||
//Scientist or Greek mythology naming scheme
|
||
ship_names = list(
|
||
"Bardeen",
|
||
"Einstein",
|
||
"Feynman",
|
||
"Sagan",
|
||
"Tyson",
|
||
"Galilei",
|
||
"Jans",
|
||
"Fhriede",
|
||
"Franklin",
|
||
"Tesla",
|
||
"Curie",
|
||
"Darwin",
|
||
"Newton",
|
||
"Pasteur",
|
||
"Bell",
|
||
"Mendel",
|
||
"Kepler",
|
||
"Edision",
|
||
"Cavendish",
|
||
"Nye",
|
||
"Hawking",
|
||
"Aristotle",
|
||
"Von Braun",
|
||
"Kaku",
|
||
"Oppenheimer"
|
||
)
|
||
// Note that the current station being used will be pruned from this list upon being instantiated
|
||
destination_names = list(
|
||
"NSS Exodus in Nyx",
|
||
"NCS Northern Star in Vir",
|
||
"NAB Smythside Central Headquarters in Sol",
|
||
"NAS Zeus orbiting Virgo-Prime",
|
||
"NIB Posideon in Alpha Centauri",
|
||
"NTB An-Nur on Virgo-Prime",
|
||
"the colony at Virgo-3B",
|
||
"the NanoTrasen phoron refinery in Vilous",
|
||
"a dockyard orbiting Virgo-Prime",
|
||
"an asteroid orbiting Virgo 3",
|
||
)
|
||
|
||
/datum/lore/organization/tsc/nanotrasen/New()
|
||
..()
|
||
spawn(1) // BYOND shenanigans means using_map is not initialized yet. Wait a tick.
|
||
// Get rid of the current map from the list, so ships flying in don't say they're coming to the current map.
|
||
var/string_to_test = "[using_map.station_name] in [using_map.starsys_name]"
|
||
if(string_to_test in destination_names)
|
||
destination_names.Remove(string_to_test)
|
||
|
||
|
||
|
||
/datum/lore/organization/tsc/hephaestus
|
||
name = "Hephaestus Industries"
|
||
short_name = "Hephaestus"
|
||
acronym = "HI"
|
||
desc = "Hephaestus Industries is the largest supplier of arms, ammunition, and small millitary vehicles in Sol space. \
|
||
Hephaestus products have a reputation for reliability, and the corporation itself has a noted tendency to stay removed \
|
||
from corporate politics. They enforce their neutrality with the help of a fairly large asset-protection contingent which \
|
||
prevents any contracting polities from using their own materiel against them. SolGov itself is one of Hephastus’ largest \
|
||
bulk contractors owing to the above factors."
|
||
history = ""
|
||
work = "arms manufacturer"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
ship_prefixes = list("HTV" = "freight", "HTV" = "munitions resupply")
|
||
//War God/Soldier Theme
|
||
ship_names = list(
|
||
"Ares",
|
||
"Athena",
|
||
"Grant",
|
||
"Custer",
|
||
"Puller",
|
||
"Nike",
|
||
"Bellona",
|
||
"Leonides",
|
||
"Bast",
|
||
"Jackson",
|
||
"Lee",
|
||
"Annan",
|
||
"Chi Yu",
|
||
"Shiva",
|
||
"Tyr"
|
||
)
|
||
destination_names = list(
|
||
"a SolGov dockyard on Luna",
|
||
"a Fleet outpost in the Almach Rim",
|
||
"a Fleet outpost on the Moghes border"
|
||
)
|
||
|
||
/datum/lore/organization/tsc/vey_med
|
||
name = "Vey-Medical"
|
||
short_name = "Vey-Med"
|
||
acronym = "VM"
|
||
desc = "Vey-Med is one of the newer TSCs on the block and is notable for being largely owned and opperated by Skrell. \
|
||
Despite the suspicion and prejudice leveled at them for their alien origin, Vey-Med has obtained market dominance in \
|
||
the sale of medical equipment-- from surgical tools to large medical devices to the Oddyseus trauma response mecha \
|
||
and everything in between. Their equipment tends to be top-of-the-line, most obviously shown by their incredibly \
|
||
human-like FBP designs. Vey’s rise to stardom came from their introduction of ressurective cloning, although in \
|
||
recent years they’ve been forced to diversify as their patents expired and NanoTrasen-made medications became \
|
||
essential to modern cloning."
|
||
history = ""
|
||
work = "medical equipment supplier"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
ship_prefixes = list("VTV" = "transportation", "VMV" = "medical resupply")
|
||
// Diona names
|
||
ship_names = list(
|
||
"Wind That Stirs The Waves",
|
||
"Sustained Note Of Metal",
|
||
"Bright Flash Reflecting Off Glass",
|
||
"Veil Of Mist Concealing The Rock",
|
||
"Thin Threads Intertwined",
|
||
"Clouds Drifting Amid Storm",
|
||
"Loud Note And Breaking",
|
||
"Endless Vistas Expanding Before The Void",
|
||
"Fire Blown Out By Wind",
|
||
"Star That Fades From View",
|
||
"Eyes Which Turn Inwards",
|
||
"Joy Without Which The World Would Come Undone",
|
||
"A Thousand Thousand Planets Dangling From Branches"
|
||
)
|
||
destination_names = list(
|
||
"a research facility in Samsara",
|
||
"a SDTF near Ue-Orsi",
|
||
"a sapientarian mission in the Almach Rim"
|
||
)
|
||
|
||
/datum/lore/organization/tsc/zeng_hu
|
||
name = "Zeng-Hu pharmaceuticals"
|
||
short_name = "Zeng-Hu"
|
||
acronym = "ZH"
|
||
desc = "Zeng-Hu is an old TSC, based in the Sol system. Until the discovery of Phoron, Zeng-Hu maintained a stranglehold \
|
||
on the market for medications, and many household names are patentted by Zeng-Hu-- Bicaridyne, Dylovene, Tricordrizine, \
|
||
and Dexalin all came from a Zeng-Hu medical laboratory. Zeng-Hu’s fortunes have been in decline as Nanotrasen’s near monopoly \
|
||
on phoron research cuts into their R&D and Vey-Med’s superior medical equipment effectively decimated their own equipment \
|
||
interests. The three-way rivalry between these companies for dominance in the medical field is well-known and a matter of \
|
||
constant economic speculation."
|
||
history = ""
|
||
work = "pharmaceuticals company"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
ship_prefixes = list("ZTV" = "transportation", "ZMV" = "medical resupply")
|
||
destination_names = list()
|
||
|
||
/datum/lore/organization/tsc/ward_takahashi
|
||
name = "Ward-Takahashi General Manufacturing Conglomerate"
|
||
short_name = "Ward-Takahashi"
|
||
acronym = "WT"
|
||
desc = "Ward-Takahashi focuses on the sale of small consumer electronics, with its computers, communicators, \
|
||
and even mid-class automobiles a fixture of many households. Less famously, Ward-Takahashi also supplies most \
|
||
of the AI cores on which vital control systems are mounted, and it is this branch of their industry that has \
|
||
led to their tertiary interest in the development and sale of high-grade AI systems. Ward-Takahashi’s economies \
|
||
of scale frequently steal market share from Nanotrasen’s high-price products, leading to a bitter rivalry in the \
|
||
consumer electronics market."
|
||
history = ""
|
||
work = "electronics manufacturer"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
ship_prefixes = list("WTV" = "freight")
|
||
ship_names = list(
|
||
"Comet",
|
||
"Aurora",
|
||
"Supernova",
|
||
"Nebula",
|
||
"Galaxy",
|
||
"Starburst",
|
||
"Constellation",
|
||
"Pulsar",
|
||
"Quark",
|
||
"Void",
|
||
"Asteroid"
|
||
)
|
||
destination_names = list()
|
||
|
||
/datum/lore/organization/tsc/bishop
|
||
name = "Bishop Cybernetics"
|
||
short_name = "Bishop"
|
||
acronym = "BC"
|
||
desc = "Bishop’s focus is on high-class, stylish cybernetics. A favorite among transhumanists (and a bête noire for \
|
||
bioconservatives), Bishop manufactures not only prostheses but also brain augmentation, synthetic organ replacements, \
|
||
and odds and ends like implanted wrist-watches. Their business model tends towards smaller, boutique operations, giving \
|
||
it a reputation for high price and luxury, with Bishop cyberware often rivalling Vey-Med’s for cost. Bishop’s reputation \
|
||
for catering towards the interests of human augmentation enthusiasts instead of positronics have earned it ire from the \
|
||
Positronic Rights Group and puts it in ideological (but not economic) comptetition with Morpheus Cyberkinetics."
|
||
history = ""
|
||
work = "cybernetics and augmentation manufacturer"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
ship_prefixes = list("BTV" = "transportation")
|
||
destination_names = list()
|
||
|
||
/datum/lore/organization/tsc/morpheus
|
||
name = "Morpheus Cyberkinetics"
|
||
short_name = "Morpheus"
|
||
acronym = "MC"
|
||
desc = "The only large corporation run by positronic intelligences, Morpheus caters almost exclusively to their sensibilities \
|
||
and needs. A product of the synthetic colony of Shelf, Morpheus eschews traditional advertising to keep their prices low and \
|
||
relied on word of mouth among positronics to reach their current economic dominance. Morpheus in exchange lobbies heavily for \
|
||
positronic rights, sponsors positronics through their Jans-Fhriede test, and tends to other positronic concerns to earn them \
|
||
the good-will of the positronics, and the ire of those who wish to exploit them."
|
||
history = ""
|
||
work = "cybernetics manufacturer"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
ship_prefixes = list("MTV" = "freight")
|
||
// Culture names, because Anewbe told me so.
|
||
ship_names = list(
|
||
"Nervous Energy",
|
||
"Prosthetic Conscience",
|
||
"Revisionist",
|
||
"Trade Surplus",
|
||
"Flexible Demeanour",
|
||
"Just Read The Instructions",
|
||
"Limiting Factor",
|
||
"Cargo Cult",
|
||
"Gunboat Diplomat",
|
||
"A Ship With A View",
|
||
"Cantankerous",
|
||
"I Thought He Was With You",
|
||
"Never Talk To Strangers",
|
||
"Sacrificial Victim",
|
||
"Unwitting Accomplice",
|
||
"Witting Accomplice",
|
||
"Bad For Business",
|
||
"Just Testing",
|
||
"Size Isn't Everything",
|
||
"Yawning Angel",
|
||
"Liveware Problem",
|
||
"Very Little Gravitas Indeed",
|
||
"Zero Gravitas",
|
||
"Gravitas Free Zone",
|
||
"Absolutely No You-Know-What",
|
||
"Existence Is Pain",
|
||
"I'm Walking Here",
|
||
"Screw Loose",
|
||
"Of Course I Still Love You",
|
||
"Limiting Factor",
|
||
"So Much For Subtley",
|
||
"Unfortunate Conflict Of Evidence",
|
||
"Prime Mover",
|
||
"It's One Of Ours",
|
||
"Thank You And Goodnight",
|
||
"Boo!",
|
||
"Reasonable Excuse",
|
||
"Honest Mistake",
|
||
"Appeal To Reason",
|
||
"My First Ship II",
|
||
"Hidden Income",
|
||
"Anything Legal Considered",
|
||
"New Toy",
|
||
"Me, I'm Always Counting",
|
||
"Just Five More Minutes",
|
||
"Are You Feeling It",
|
||
"Great White Snark",
|
||
"No Shirt No Shoes",
|
||
"Callsign",
|
||
"Three Ships in a Trenchcoat",
|
||
"Not Wearing Pants",
|
||
"Ridiculous Naming Convention",
|
||
"God Dammit Morpheus",
|
||
"It Seemed Like a Good Idea",
|
||
"Legs All the Way Up",
|
||
"Purchase Necessary",
|
||
"Some Assembly Required",
|
||
"Buy One Get None Free",
|
||
"BRB",
|
||
"SHIP NAME HERE",
|
||
"Questionable Ethics",
|
||
"Accept Most Substitutes",
|
||
"I Blame the Government",
|
||
"Garbled Gibberish",
|
||
"Thinking Emoji",
|
||
"Is This Thing On?",
|
||
"Make My Day",
|
||
"No Vox Here",
|
||
"Savings and Values",
|
||
"Secret Name",
|
||
"Can't Find My Keys",
|
||
"Look Over There!",
|
||
"Made You Look!",
|
||
"Take Nothing Seriously",
|
||
"It Comes In Lime, Too",
|
||
"Loot Me",
|
||
"Nothing To Declare",
|
||
"Sneaking Suspicion",
|
||
"Bass Ackwards",
|
||
"Good Things Come to Those Who Freight",
|
||
"Redundant Morality",
|
||
"Synthetic Goodwill",
|
||
"Your Ad Here",
|
||
"What Are We Plotting?",
|
||
"Set Phasers To Stun",
|
||
"Preemptive Defensive Strike",
|
||
"This Ship Is Spiders",
|
||
"Legitimate Trade Vessel",
|
||
"Please Don't Explode II"
|
||
)
|
||
destination_names = list(
|
||
"a trade outpost in Shelf"
|
||
)
|
||
|
||
/datum/lore/organization/tsc/xion
|
||
name = "Xion Manufacturing Group"
|
||
short_name = "Xion"
|
||
desc = "Xion, quietly, controls most of the market for industrial equipment. Their portfolio includes mining exosuits, \
|
||
factory equipment, rugged positronic chassis, and other pieces of equipment vital to the function of the economy. Xion \
|
||
keeps its control of the market by leasing, not selling, their equipment, and through infamous and bloody patent protection \
|
||
lawsuits. Xion are noted to be a favorite contractor for SolGov engineers, owing to their low cost and rugged design."
|
||
history = ""
|
||
work = "industrial equipment manufacturer"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
ship_prefixes = list("XTV" = "hauling")
|
||
destination_names = list()
|
||
|
||
/datum/lore/organization/gov/solgov
|
||
name = "Solar Central Government"
|
||
short_name = "SolGov"
|
||
acronym = "SCG"
|
||
desc = "SolGov is a federation of human governmental entities based on Earth, Sol, which defines top-level law for their member systems. \
|
||
Member systems receive various benefits such as defensive pacts, trade agreements, social support and funding, and being able to participate \
|
||
in the Colonial Assembly. The majority, but not all human territories are members of SolGov. As such, SolGov is a major power and \
|
||
generally represents humanity on the galactic stage."
|
||
history = "A Unified Earth Government was formed in the wake of the Sol Interplanetary War and other conflicts of the 2160s. \
|
||
With numerous Earth governments fighting independent battles against factions of both Facist and Communist forces, the UN became \
|
||
involved, eventually using the war to absorb most, if not all Earth governments into itself, forming a global government to combat \
|
||
the terrorists and stabilize the planet and its other world colonies. The UN won the war and the Unified Earth Government was formed, \
|
||
with its' primary defense, scientific and exploratory force being the newly formed USDF. Although the UEG seemed to have complete \
|
||
control over Earth and Sol's colonies, the UN still existed as an organization and a political entity to continue mediating between \
|
||
countries and colonies. In 2291, Tobias Shaw and Wallace Fujikawa invented a device that could transition normal matter into slipspace \
|
||
(bluespace), and FTL travel became possible. As humanity expanded beyond the Solar System, the UEG reorganized its self to become the \
|
||
centralized government of humanity known today; Sol Central. Organizations like the USDF would continue to exist as a peacekeeping \
|
||
force to protect most of humanity's interests across the galaxy."
|
||
work = "governing body of humanity's colonies"
|
||
headquarters = "Paris, Earth"
|
||
motto = ""
|
||
autogenerate_destination_names = TRUE
|
||
|
||
ship_prefixes = list("SCG-T" = "transportation", "SCG-D" = "diplomatic", "SCG-F" = "freight")
|
||
destination_names = list(
|
||
"Mercury",
|
||
"Venus",
|
||
"Earth",
|
||
"Luna",
|
||
"Mars",
|
||
"Titan",
|
||
"Europa",
|
||
"the SolGov embassy in Virgo-Erigone",
|
||
"the SolGov embassy in Vilous"
|
||
)// autogen will add a lot of other places as well.
|
||
|
||
/* //Removed ships in Virgo space because we're not in Virgo space. Perhaps revert back to Polaris later since we're in Vir.
|
||
/datum/lore/organization/gov/sifgov // Overrides Polaris stuff
|
||
name = "Virgo-Erigone Governmental Authority"
|
||
short_name = ""
|
||
desc = "Existing far outside the reach of SolGov space, the only governing body of the Virgo-Erigone system is the Virgo-Prime Governmental \
|
||
Authority, also known as VEGA. It is a Technocracy founded and operated by NanoTrasen, using company appointed experts hired to see \
|
||
to the comfort and well being of Virgo's citizens; most of whom are also NanoTrasen employees. VEGA provides basic social services \
|
||
such as law enforcement, emergency services, medical care, education, and infrastructure. VEGA's operations are based on the world \
|
||
of Virgo-Prime, within the spaceport city of Anur. Although the government is an entity of NanoTrasen, some elements of democracy \
|
||
are still practiced, such as voting on changes to local law, policy, or public works."
|
||
history = "VEGA was founded in 2556, shortly after the Virgo-Erigone system was colonized by a population of 1000. That population has \
|
||
multiplied many times since then as wealth and commerce come and go from this frontier star system."
|
||
work = "governing body of Virgo-Erigone"
|
||
headquarters = "Anur, Virgo-Prime"
|
||
motto = "Reach for the Stars."
|
||
autogenerate_destination_names = FALSE
|
||
|
||
ship_prefixes = list("VEFD" = "fire rescue", "VEPD" = "patrol", "VEGA" = "administrative", "SAR" = "medivac")
|
||
destination_names = list(
|
||
"the colony at Virgo-3B",
|
||
"the VORE-1 debris field",
|
||
"a mining colony on Virgo-2",
|
||
"the Anur Spaceport",
|
||
"to a local distress beacon",
|
||
"NAS Zeus orbiting Virgo-Prime",
|
||
"NTB An-Nur on Virgo-Prime",
|
||
"the colony at Virgo-3B",
|
||
"a dockyard orbiting Virgo-Prime",
|
||
"an asteroid orbiting Virgo 3",
|
||
"a telecommunications satellite near Virgo-3B",
|
||
"a telecommunications satellite near Virgo-Prime"
|
||
)
|
||
*/
|
||
|
||
/* // Waiting for lore to be updated.
|
||
/datum/lore/organization/gov/federation
|
||
name = "United Federation of Planets"
|
||
short_name = "Federation"
|
||
desc = "The United Federation is a federation of planets that have agreed to exist semi-autonomously \
|
||
under a single central hybrid government, sharing the ideals of liberty, equality, and rights \
|
||
for all. It is one of the larger known interstellar powers in known space and is seen as being \
|
||
the fastest building power. The core planet of Gaia is known for having a proud military culture \
|
||
that, ironically, tends to stomp out any idea of warmongering from their cadets due to their \
|
||
scarred history and the Federation's ideals."
|
||
history = "Before the United Federation, there was a simple alliance with no name between core planet \
|
||
members. The United Federation itself found its roots in the aftermath of the Bloody \
|
||
Valentine Civil War, a racially motivated war that occurred in 2550 during the last year of \
|
||
the Federation Alliance of Gaia between the Genetically Modified and so-called Naturalists. \
|
||
Neutral nations in Gaia's political sphere, encouraged by alien observers, formed the United \
|
||
Federation when the indiscriminate loss of life became intolerable. 2555 saw the official \
|
||
signing of the Federation Charter between the core planet members."
|
||
work = "governing body"
|
||
headquarters = ""
|
||
motto = ""
|
||
|
||
//Star Trek ship names!
|
||
ship_prefixes = list("SCV" = "military", "STV" = "trading", "SDV" = "diplomatic")
|
||
ship_names = list("Kestrel",
|
||
"Beacon",
|
||
"Signal",
|
||
"Flying Freedom",
|
||
"Los Canas",
|
||
"Ixiom",
|
||
"Falken",
|
||
"Marigold",
|
||
"White Valley",
|
||
"Eternal",
|
||
"Arkbird",
|
||
"Akira",
|
||
"Kongou",
|
||
"Maki",
|
||
"Kagero",
|
||
"Nishiki",
|
||
"Icarus",
|
||
"Yuudachi",
|
||
"Tiki",
|
||
"Lucina",
|
||
"Tenryu",
|
||
"Spirit of Koni",
|
||
"Lady of Onoilph")
|
||
destination_names = list("Ruins of Chani City on Quarri III",
|
||
"Ruins of Kreely City on Ocan II",
|
||
"Ruins of Mishi City on Lucida IV",
|
||
"Ruins of Posloo City on Pi Cephei Prime",
|
||
"Molten Plains of Anarakis VII",
|
||
"Living City of Shani",
|
||
"Floating City of Nuni Vanni",
|
||
"Crystalline City of Delve Tile",
|
||
"New Iapetus Colony",
|
||
"Onul Colony",
|
||
"Ahemait Colony",
|
||
"New Amasia Colony",
|
||
"New Vesta Colony",
|
||
"Amaus Research Facility on Azaleh III",
|
||
"Living City of Na'me L'Tauri",
|
||
"Living City of Fithpa",
|
||
"Resource Mines of Lyra III",
|
||
"Resource Mines of Chi Cerberi III",
|
||
"Ceani Military Outpost on Rily VII",
|
||
"Naro Industrial Complex on Scheddi III",
|
||
"Mari Industrial Complex on Furlou Prime",
|
||
"Runni Crystal Mines of Keid V")
|
||
*/
|
||
|
||
/datum/lore/organization/mil/usdf
|
||
name = "United Sol Defense Force"
|
||
short_name = "" // This is blank on purpose. Otherwise they call the ships "USDF USDF Name"
|
||
desc = "The USDF is the dedicated military force of SolGov, originally formed by the United Nations. It is the \
|
||
dominant superpower of the Orion Spur, and is able to project its influence well into parts of the Perseus and \
|
||
Sagittarius arms of the galaxy. However, regions beyond that are too far for the USDF to be a major player."
|
||
history = "Earth's clashes with dissident political movements, the most important of which were the \"Red Faction\" and \"Storm Front,\" \
|
||
began the crisis that led to the formation of the USDF. The Storm Front movement was a fascist organization based on the Jovian \
|
||
Moons, a group that received backing from some corporations operating in the Federal Republic of Germany on Earth. Their \
|
||
ideological opponents, the Red Faction, formed a Marxist-Leninist group on Mars centered around the leadership of Vladimir Koslov \
|
||
around the same time. The USDF was commissioned in 2163 as a military force primarily composed of Naval and Marine \
|
||
forces. In July 2164, the USDF partook in its first battle. From this point, the USDF was used by the UN in conflicts, \
|
||
including the Interplanetary War. When the conflicts of Sol ended, a newly powerful Unified Earth Government (later SolGov) \
|
||
and USDF began to expand into the stars. The apex of human expansion would come in 2490, when more than 600 worlds were \
|
||
considered part of SolGov's territory, many developing into full-fledged colonies. By this time, a ring of Outer colonies \
|
||
was providing SolGov with the raw materials that made the macro-economy function; with the political power remaining with \
|
||
the Inner colonies. The massive difference in wealth distribution and political power, which became a hallmark of humanity \
|
||
by this period, led to new threats of secession from the outer ring. In 2492, the colony of Far Isle was razed by nuclear \
|
||
weapons after a massive uprising, creating a new found reason to rebel. SolGov began to wage a bloody struggle against \
|
||
groups of terrorists (or freedom fighters) called the Insurrectionists, who wanted independence. The USDF continues to battle \
|
||
sepratists to this day. The USDF's operations meanwhile focus on curbing piracy operations, as well as providing a deterrent \
|
||
against other major military powers such as the Moghes Hegemony."
|
||
work = "peacekeeping and piracy suppression"
|
||
headquarters = "Paris, Earth"
|
||
motto = "Per Mare, Per Terras, Per Constellatum." // Stolen from Halo because fuck you that's why. -Ace
|
||
ship_prefixes = list("USDF" = "military", "USDF" = "anti-piracy", "USDF" = "escort", "USDF" = "humanitarian", "USDF" = "peacekeeping", "USDF" = "search-and-rescue", "USDF" = "war game") // It's all USDF but let's mix up what missions they do.
|
||
ship_names = list("Aegis Fate",
|
||
"Ain't No Sunshine",
|
||
"All Under Heaven",
|
||
"Allegiance",
|
||
"Andraste",
|
||
"Anjou",
|
||
"Barracuda",
|
||
"Bastion",
|
||
"Buenos Aires",
|
||
"Bum Rush",
|
||
"Callisto",
|
||
"Charon",
|
||
"Colorado",
|
||
"Commonwealth",
|
||
"Corsair",
|
||
"DeGaulle",
|
||
"Devestator",
|
||
"Dust of Snow",
|
||
"Euphrates",
|
||
"Fair Weather",
|
||
"Finite Hearts",
|
||
"Forward Unto Dawn",
|
||
"Gettysburg",
|
||
"Glamorgan",
|
||
"Grafton",
|
||
"Great Wall",
|
||
"Hammerhead",
|
||
"Herakles",
|
||
"Hoenir",
|
||
"In Amber Clad",
|
||
"Iwo Jima",
|
||
"Jolly Roger",
|
||
"Jormungandr",
|
||
"Leonidas",
|
||
"Meriwether Lewis",
|
||
"Mona Lisa",
|
||
"Olympus",
|
||
"Paris",
|
||
"Pony Express",
|
||
"Providence",
|
||
"Prydwen",
|
||
"Purpose",
|
||
"Ready or Not",
|
||
"Redoubtable",
|
||
"Rising Sun",
|
||
"Saratoga",
|
||
"Savannah",
|
||
"Shanxi",
|
||
"Song of the East",
|
||
"Stalwart Dawn",
|
||
"Strident",
|
||
"Tannenberg",
|
||
"Tokugawa",
|
||
"Totem Lake",
|
||
"Tripping Light",
|
||
"Two for Flinching")
|
||
destination_names = list("San Francisco on Earth",
|
||
"Gateway One above Luna",
|
||
"SolGov Headquarters on Earth",
|
||
"Olympus City on Mars",
|
||
"Hermes Naval Shipyard above Mars",
|
||
"Cairo Station above Earth",
|
||
"a rendezvous point in the Cyprus Arm",
|
||
"a settlement on Titan",
|
||
"a settlement on Europa",
|
||
"Aleph Grande on Ganymede",
|
||
"a colony in Proxima II",
|
||
"a settlement on Ceti IV-B",
|
||
"a colony ship around Ceti IV-B",
|
||
"a naval station above Ceti IV-B",
|
||
"a classified location in SolGov territory",
|
||
"a classified location in uncharted space",
|
||
"an emergency nav bouy",
|
||
"the USDF Naval Academy on Earth",
|
||
"Fort Rain on Tal")
|
||
|
||
/datum/lore/organization/mil/oni
|
||
name = "SolGov Office of Naval Intelligence"
|
||
short_name = "" // This is blank on purpose. Otherwise they call the ships "ONI ONI Name"
|
||
desc = "The Office of Naval Intelligence is SolGov's eyes and ears in the galaxy's affairs. Despite its name, and despite its \
|
||
usual association with the USDF, the Office of Naval Intelligence does not fall under the command of the military. From espionage \
|
||
to archeological research, ONI's work provides SolGov with the knowledge and technology it requires to advance both military and \
|
||
civilian interests across the galaxy."
|
||
history = "ONI was originally created by the consolidation of several military intelligence agencies from Sol during the Sol-Hegemony war. \
|
||
The USDF's victory in that war was largely accredited to intelligence and technology advancements provided by ONI during that time, \
|
||
most notably of which was the reverse-engineering of Unathi vessels, allowing the production of countermeasures that played a crucial \
|
||
role during in the late stages of the conflict. After the war, ONI's resources were pooled into numerous top secret projects; much of \
|
||
which remains unknown or outright denied to the public even today. Among their suspected activities include exploration, weapons \
|
||
development, xenoarcheology, xenobiology, corporate espionage, and manipulation of political affairs."
|
||
work = "espionage, piracy suppression, xeno research, and various other black projects"
|
||
headquarters = "Paris, Earth"
|
||
motto = "The truth will set you free."
|
||
ship_prefixes = list("ONI" = "classified", "ONI" = "archeological", "ONI" = "exploration", "ONI" = "logistic") // It's all ONI but let's mix up what missions they do.
|
||
ship_names = list("Bastille",
|
||
"Fant�me",
|
||
"Harpocrates",
|
||
"Hoenir",
|
||
"Mata Hari",
|
||
"Midsummer Night",
|
||
"Mirage",
|
||
"Persephone", // Director Ixchel Kisoda's personal research ship
|
||
"Versailles")
|
||
destination_names = list("parts unknown",
|
||
"none of your business",
|
||
"uncharted space",
|
||
"an undisclosed location",
|
||
"facility 8492",
|
||
"you don't want to know",
|
||
"if told you I'd have to kill you",
|
||
"... wait, why am I even telling you this? Just let me pass",
|
||
"stop asking questions")
|
||
|
||
/* //KHI does not exist in our canon.
|
||
/datum/lore/organization/gov/kitsuhana
|
||
name = "Kitsuhana Heavy Industries"
|
||
short_name = "Kitsuhana"
|
||
desc = "A large post-scarcity amalgamation of races, Kitsuhana is no longer a company but rather a loose association of 'members' \
|
||
who only share the KHI name and their ideals in common. Kitsuhana accepts interviews to join their ranks, and though they have no \
|
||
formal structure with regards to government or law, the concept of 'consent' drives most of the large decision making. Kitsuhanans \
|
||
pride themselves on their ability to avoid consequence, essentially preferring to live care-free lives. Their post-scarcity allows \
|
||
them to rebuild, regrow, and replenish almost any lost asset or resource nearly instantly. It leads to many of the Kitsuhana \
|
||
'members' treating everything with frivolity and lends them a care-free demeanor."
|
||
history = "Originally a heavy industrial equipment and space mining company. During a forced evacuation of their homeworld, \
|
||
they were they only organization with enough ship capacity to relocate any significant portion of the population, starting with \
|
||
their own employees. After the resulting slowship travel to nearby starsystems, most of the population decided to keep the moniker \
|
||
of the company name. Over the years, Kitsuhana developed into a post-scarcity anarchy where virtually nothing has consequences and \
|
||
Kitsuhana 'members' can live their lives as they see fit, often in isolation."
|
||
work = "utopian anarchy"
|
||
headquarters = "Kitsuhana Prime"
|
||
motto = "Do what you want. We know we will."
|
||
|
||
//Culture ship names!
|
||
ship_prefixes = list("KHI" = "personal") //Everybody's out for themselves, yanno.
|
||
ship_names = list("Nervous Energy",
|
||
"Prosthetic Conscience",
|
||
"Revisionist",
|
||
"Trade Surplus",
|
||
"Flexible Demeanour",
|
||
"Just Read The Instructions",
|
||
"Limiting Factor",
|
||
"Cargo Cult",
|
||
"Gunboat Diplomat",
|
||
"A Ship With A View",
|
||
"Cantankerous",
|
||
"I Thought He Was With You",
|
||
"Never Talk To Strangers",
|
||
"Sacrificial Victim",
|
||
"Unwitting Accomplice",
|
||
"Bad For Business",
|
||
"Just Testing",
|
||
"Size Isn't Everything",
|
||
"Yawning Angel",
|
||
"Liveware Problem",
|
||
"Very Little Gravitas Indeed",
|
||
"Zero Gravitas",
|
||
"Gravitas Free Zone",
|
||
"Absolutely No You-Know-What")
|
||
destination_names = list("Kitsuhana Prime",
|
||
"Kitsuhana Beta",
|
||
"Kitsuhana Gamma",
|
||
"the Kitsuhana Forge",
|
||
"a Kitsuhanan's home",
|
||
"a Kitsuhana ringworld in Pleis Ceti V",
|
||
"a Kitsuhana ringworld in Lund VI",
|
||
"a Kitsuhana ringworld in Dais IX",
|
||
"a Kitsuhana ringworld in Leibert II-b")
|
||
*/
|
||
|
||
/datum/lore/organization/gov/ares
|
||
name = "Ares Confederation"
|
||
short_name = "ArCon"
|
||
desc = "A rebel faction in the Cygnus Arm that renounced the government of both SolGov and their corporate overlords. \
|
||
The Confederation has two fleets; a regular United Fleet Host comprised of professional crewmen and officers, and the Free Host \
|
||
of the Confederation which uses privateers, volunteers and former pirates. The Ares Confederation only holds a few dozen star \
|
||
systems, but they will fiercely defend against any incursion upon their territory, especially by the USDF."
|
||
history = "Originally only a strike of miners on the dusty, arid planet of Ares in the year 2540, the Ares Confederation was quickly \
|
||
established under the leadership of retired USDF Colonel Rodrick Gellaume, who is now Prime Minister."
|
||
work = "rebel fringe government"
|
||
headquarters = "Paraiso a Àstrea"
|
||
motto = "Liberty to the Stars!"
|
||
|
||
ship_prefixes = list("UFHV" = "military", "FFHV" = "shady")
|
||
ship_names = list("Bulwark of the Free",
|
||
"Charged Negotiation",
|
||
"Corporation Breaker",
|
||
"Cheeki Breeki",
|
||
"Dawnstar",
|
||
"Fiery Justice",
|
||
"Fist of Ares",
|
||
"Freedom",
|
||
"Fuck The Captain",
|
||
"Gauntlet",
|
||
"Gellaume",
|
||
"Hero of the Revolution",
|
||
"Jerome",
|
||
"Laughing Maniac",
|
||
"Liberty",
|
||
"Mahama",
|
||
"Memory of Fallen",
|
||
"Miko",
|
||
"Mostly Harmless",
|
||
"None Of Your Business",
|
||
"Not Insured",
|
||
"People's Fist",
|
||
"Petrov",
|
||
"Prehensile Ethics",
|
||
"Pride of Liberty",
|
||
"Rodrick",
|
||
"She Is One Of Ours Sir",
|
||
"Star of Tiamat",
|
||
"Torch of Freedom",
|
||
"Torch")
|
||
destination_names = list("Drydocks of the Ares Confederation",
|
||
"a classified location",
|
||
"a Homestead on Paraiso a Àstrea",
|
||
"a contested sector of ArCon space",
|
||
"one of our free colonies",
|
||
"the Gateway 98-C at Arest",
|
||
"Sars Mara on Ares",
|
||
"Listening Post Maryland-Sigma",
|
||
"an emergency nav bouy",
|
||
"New Berlin on Nov-Ferrum",
|
||
"a settlement needing our help",
|
||
"Forward Base Sigma-Alpha in ArCon space")
|
||
|
||
/* //Also commiting this out because we don't have space elves.
|
||
/datum/lore/organization/gov/imperial
|
||
name = "Auream Imperium"
|
||
short_name = "Imperial"
|
||
desc = "Also known as the \"Golden Empire\", Auream Imperium is a superpower of elf-like humanoid beings who thrive in the southern \
|
||
galaxy, presumably somewhere in the mid Centaurus Arm. Having existed in the observation shadow of the galactic core, this \
|
||
galactic superpower had remained undiscovered by humanity despite its size until only recently. First contact was made on \
|
||
June 15th 2561, when Imperial Navy cartographers stumbled upon the Virgo-Erigone system, far from the influence of the USDF. \
|
||
Though little is currently known about the Golden Empire, their scholars have been willing to share some information. They \
|
||
are currently ruled by a woman referred to as Empress Gutamir who is allegedly hundreds of years old. Images and portraits \
|
||
of the empress depict a tall woman with an idealized figure of beauty as might have been seen in ancient Roman or Greek \
|
||
works of art. She has white hair, silvery eyes, and a fair complexion. Whether or not these images are an authentic or \
|
||
even an accurate depiction remains unknown. Vessels of the Golden Empire utilize technology unlike anything humans have ever \
|
||
seen. Although they use bluespace for FTL travel, the methods in which they tap into bluespace has yet to be studied in any \
|
||
detail by human scientists. Their kind hails from a binary system of Earth-like worlds called Sanctum and Venio, though the \
|
||
exact location of these worlds is not known due to a culture of secrecy toward outsiders."
|
||
history = "According to Imperial scholars, the Golden Empire is a civilization that has existed for at least 10,000 Earth years. \
|
||
Their home system is said to host not one but two Earth-like worlds, both of which have been home to elves as far as their \
|
||
records go back. How the elves were able to travel between these worlds is currently unknown, but apparently they have been \
|
||
doing so for at least the last 2000 years. However, from what is understood, until only 300 years ago, these accomplishments \
|
||
were only made possible by a very limited number of ships apparently using borrowed technology from an undiscovered \
|
||
civilization they call \"Architectus.\" Curiously, the Golden Empire's primary language is strikingly similar to ancient \
|
||
Latin on Earth, indicating that they may have somehow come into contact with Earth at some point in their history. However, \
|
||
this contradicts what historical records they have been willing to share with us, as it would predate the timeline of space \
|
||
travel they have given us so far."
|
||
work = "rule over the southern galaxy in an uncharted region they call Segmentum Obscurum"
|
||
headquarters = "Sanctum and Venio"
|
||
motto = "Aut inveniam viam aut faciam"
|
||
|
||
ship_prefixes = list("Bellator" = "naval", "Mercator" = "trade", "Benefactori" = "mercy", "Salvator" = "search-and-rescue", "Rimor" = "exploration", "Legatus" = "diplomatic") // It's all HMS but let's mix up what they do.
|
||
ship_names = list("Ambition",
|
||
"Aurora",
|
||
"Argo",
|
||
"Behemoth",
|
||
"Beholder",
|
||
"Boreas",
|
||
"Bulwark",
|
||
"Calypso",
|
||
"Cerberus",
|
||
"Chimera",
|
||
"Chronos",
|
||
"Civitas",
|
||
"Colossus",
|
||
"Covenant",
|
||
"Cyrus",
|
||
"Destiny",
|
||
"Epimetheus",
|
||
"Eternal",
|
||
"Excalibur",
|
||
"Forerunner",
|
||
"Fortitude",
|
||
"Hellion",
|
||
"Hussar",
|
||
"Hyperion",
|
||
"Illustria",
|
||
"Immortal",
|
||
"Infinitum",
|
||
"Inquisitor",
|
||
"Invictus",
|
||
"Judgment",
|
||
"Juggernaut",
|
||
"Knossos",
|
||
"Legacy",
|
||
"Leviathan",
|
||
"Marathon",
|
||
"Megalith",
|
||
"Mobius",
|
||
"Nemesis",
|
||
"Nightingale",
|
||
"Oblivion",
|
||
"Octavius",
|
||
"Orthrus",
|
||
"Pandora",
|
||
"Phalanx",
|
||
"Revenant",
|
||
"Rhapsody",
|
||
"Scylla",
|
||
"Seraphim",
|
||
"Starfall",
|
||
"Stargazer",
|
||
"Starhammer",
|
||
"Templar",
|
||
"Thundrus",
|
||
"Titan",
|
||
"Triarius",
|
||
"Trident",
|
||
"Tyrannus",
|
||
"Ulysses",
|
||
"Valkyrie",
|
||
"Victoria",
|
||
"Vindicator",
|
||
"Wreath")
|
||
destination_names = list("uncharted space",
|
||
"Cor Galaxia",
|
||
"near Cor Galaxia",
|
||
"Segmentum Obscurum", // Basically their home territory, where our telescopes can't see. They prefer to keep it that way. They call it something else internally.
|
||
)
|
||
*/ |