mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
* infiltration use buttons instead of a links * minor accessibility patch * Hospitalization will not cost more than 10% of the players money. * Adde hospitalization netscript function * Removed the suggestion that the combat path will lead to Daedalus, it still will. But new players should not be told that this is a viable path to completing a BitNode. * getMemberInformation now returns everything about the member. * New netscript function to get the players hacknet server hash capacity * yesno dialog box will not keep older messages anymore * v0.51.1 * Casino part 1 * Discord link in options, documentation for getMemberInformation updated, dev menu has more money options, tech vendors now handle max cores or max ram better * Removed text under Factiosn referencing rejected factions. * Removed html element forgotten in plain text * Casino implementation * v0.51.2
82 lines
3.4 KiB
TypeScript
82 lines
3.4 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",
|
|
|
|
// 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",
|
|
|
|
// Ishima
|
|
IshimaNovaMedical = "Nova Medical",
|
|
IshimaOmegaSoftware = "Omega Software",
|
|
IshimaStormTechnologies = "Storm Technologies",
|
|
|
|
// 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",
|
|
};
|