mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-26 11:10:58 +02:00
85 lines
2.7 KiB
TypeScript
85 lines
2.7 KiB
TypeScript
/**
|
|
* Names of all locations
|
|
*/
|
|
export enum LocationName {
|
|
// Cities
|
|
Aevum = "Aevum",
|
|
Chongqing = "Chongqing",
|
|
Ishima = "Ishima",
|
|
NewTokyo = "New Tokyo",
|
|
Sector12 = "Sector-12",
|
|
Volhaven = "Volhaven",
|
|
|
|
// Aevum Locations
|
|
AevumAeroCorp = "AeroCorp",
|
|
AevumBachmanAndAssociates = "Bachman & Associates",
|
|
AevumClarkeIncorporated = "Clarke Incorporated",
|
|
AevumCrushFitnessGym = "Crush Fitness Gym",
|
|
AevumECorp = "ECorp",
|
|
AevumFulcrumTechnologies = "Fulcrum Technologies",
|
|
AevumGalacticCybersystems = "Galactic Cybersystems",
|
|
AevumNetLinkTechnologies = "NetLink Technologies",
|
|
AevumPolice = "Aevum Police Headquarters",
|
|
AevumRhoConstruction = "Rho Construction",
|
|
AevumSnapFitnessGym = "Snap Fitness Gym",
|
|
AevumSummitUniversity = "Summit University",
|
|
AevumWatchdogSecurity = "Watchdog Security",
|
|
AevumCasino = "Iker Molina Casino",
|
|
|
|
// Chongqing locations
|
|
ChongqingKuaiGongInternational = "KuaiGong International",
|
|
ChongqingSolarisSpaceSystems = "Solaris Space Systems",
|
|
ChongqingChurchOfTheMachineGod = "Church of the Machine God",
|
|
|
|
// Sector 12
|
|
Sector12AlphaEnterprises = "Alpha Enterprises",
|
|
Sector12BladeIndustries = "Blade Industries",
|
|
Sector12CIA = "Central Intelligence Agency",
|
|
Sector12CarmichaelSecurity = "Carmichael Security",
|
|
Sector12CityHall = "Sector-12 City Hall",
|
|
Sector12DeltaOne = "DeltaOne",
|
|
Sector12FoodNStuff = "FoodNStuff",
|
|
Sector12FourSigma = "Four Sigma",
|
|
Sector12IcarusMicrosystems = "Icarus Microsystems",
|
|
Sector12IronGym = "Iron Gym",
|
|
Sector12JoesGuns = "Joe's Guns",
|
|
Sector12MegaCorp = "MegaCorp",
|
|
Sector12NSA = "National Security Agency",
|
|
Sector12PowerhouseGym = "Powerhouse Gym",
|
|
Sector12RothmanUniversity = "Rothman University",
|
|
Sector12UniversalEnergy = "Universal Energy",
|
|
|
|
// New Tokyo
|
|
NewTokyoDefComm = "DefComm",
|
|
NewTokyoGlobalPharmaceuticals = "Global Pharmaceuticals",
|
|
NewTokyoNoodleBar = "Noodle Bar",
|
|
NewTokyoVitaLife = "VitaLife",
|
|
NewTokyoArcade = "Arcade",
|
|
|
|
// Ishima
|
|
IshimaNovaMedical = "Nova Medical",
|
|
IshimaOmegaSoftware = "Omega Software",
|
|
IshimaStormTechnologies = "Storm Technologies",
|
|
IshimaGlitch = "0x6C1",
|
|
|
|
// Volhaven
|
|
VolhavenCompuTek = "CompuTek",
|
|
VolhavenHeliosLabs = "Helios Labs",
|
|
VolhavenLexoCorp = "LexoCorp",
|
|
VolhavenMilleniumFitnessGym = "Millenium Fitness Gym",
|
|
VolhavenNWO = "NWO",
|
|
VolhavenOmniTekIncorporated = "OmniTek Incorporated",
|
|
VolhavenOmniaCybersystems = "Omnia Cybersystems",
|
|
VolhavenSysCoreSecurities = "SysCore Securities",
|
|
VolhavenZBInstituteOfTechnology = "ZB Institute of Technology",
|
|
|
|
// Generic locations
|
|
Hospital = "Hospital",
|
|
Slums = "The Slums",
|
|
TravelAgency = "Travel Agency",
|
|
WorldStockExchange = "World Stock Exchange",
|
|
|
|
// Default name for Location objects
|
|
Void = "The Void",
|
|
}
|