2022-03-19 09:09:59 +01:00
|
|
|
import { FactionNames } from '../../Faction/data/FactionNames';
|
2018-09-07 05:56:59 +02:00
|
|
|
// tslint:disable:max-file-line-count
|
|
|
|
|
|
|
|
// This could actually be a JSON file as it should be constant metadata to be imported...
|
2019-04-21 07:31:19 +02:00
|
|
|
import { IMinMaxRange } from "../../types";
|
2019-06-03 08:29:56 +02:00
|
|
|
import { LocationName } from "../../Locations/data/LocationNames";
|
2021-03-14 07:08:24 +01:00
|
|
|
import { LiteratureNames } from "../../Literature/data/LiteratureNames";
|
2021-10-07 23:55:49 +02:00
|
|
|
import { SpecialServers } from "./SpecialServers";
|
2018-09-07 05:56:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The metadata describing the base state of servers on the network.
|
|
|
|
* These values will be adjusted based on Bitnode multipliers when the Server objects are built out.
|
|
|
|
*/
|
|
|
|
interface IServerMetadata {
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* When populated, the base security level of the server.
|
|
|
|
*/
|
|
|
|
hackDifficulty?: number | IMinMaxRange;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* The DNS name of the server.
|
|
|
|
*/
|
|
|
|
hostname: string;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* When populated, the files will be added to the server when created.
|
|
|
|
*/
|
|
|
|
literature?: string[];
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* When populated, the exponent of 2^x amount of RAM the server has.
|
|
|
|
* This should be in the range of 1-20, to match the Player's max RAM.
|
|
|
|
*/
|
|
|
|
maxRamExponent?: number | IMinMaxRange;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* How much money the server starts out with.
|
|
|
|
*/
|
|
|
|
moneyAvailable: number | IMinMaxRange;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* The number of network layers away from the `home` server.
|
|
|
|
* This value is between 1 and 15.
|
|
|
|
* If this is not populated, @specialName should be.
|
|
|
|
*/
|
|
|
|
networkLayer?: number | IMinMaxRange;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* The number of ports that must be opened before the player can execute NUKE.
|
|
|
|
*/
|
|
|
|
numOpenPortsRequired: number;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* The organization that the server belongs to.
|
|
|
|
*/
|
|
|
|
organizationName: string;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* The minimum hacking level before the player can run NUKE.
|
|
|
|
*/
|
|
|
|
requiredHackingSkill: number | IMinMaxRange;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* The growth factor for the server.
|
|
|
|
*/
|
|
|
|
serverGrowth?: number | IMinMaxRange;
|
2018-09-07 05:56:59 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
/**
|
|
|
|
* A "unique" server that has special implications when the player manually hacks it.
|
|
|
|
*/
|
|
|
|
specialName?: string;
|
2019-03-05 02:40:28 +01:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
[key: string]: any;
|
2018-09-07 05:56:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The metadata for building up the servers on the network.
|
|
|
|
*/
|
|
|
|
export const serverMetadata: IServerMetadata[] = [
|
|
|
|
{
|
|
|
|
hackDifficulty: 99,
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.AevumECorp.toLowerCase(),
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 70e9,
|
|
|
|
min: 30e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 15,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumECorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1400,
|
|
|
|
min: 1050,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: 99,
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumECorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 99,
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.Sector12MegaCorp.toLowerCase(),
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 60e9,
|
|
|
|
min: 40e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 15,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12MegaCorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1350,
|
|
|
|
min: 1100,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: 99,
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12MegaCorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 88,
|
|
|
|
min: 72,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
hostname: "b-and-a",
|
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 30e9,
|
|
|
|
min: 15e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 14,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumBachmanAndAssociates,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1150,
|
|
|
|
min: 900,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 80,
|
|
|
|
min: 60,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumBachmanAndAssociates,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 97,
|
|
|
|
min: 88,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
hostname: "blade",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.BeyondMan],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 9,
|
|
|
|
min: 5,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 40e9,
|
|
|
|
min: 10e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 14,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12BladeIndustries,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1200,
|
|
|
|
min: 900,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 85,
|
|
|
|
min: 55,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12BladeIndustries,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 99,
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.VolhavenNWO.toLowerCase(),
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.TheHiddenWorld],
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 40e9,
|
|
|
|
min: 20e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 14,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenNWO,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1300,
|
|
|
|
min: 950,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 95,
|
|
|
|
min: 65,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenNWO,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 65,
|
|
|
|
min: 45,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
hostname: "clarkinc",
|
2021-09-05 01:09:30 +02:00
|
|
|
literature: [LiteratureNames.BeyondMan, LiteratureNames.CostOfImmortality],
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 25e9,
|
|
|
|
min: 15e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 14,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumClarkeIncorporated,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1250,
|
|
|
|
min: 950,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 75,
|
|
|
|
min: 45,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumClarkeIncorporated,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 99,
|
|
|
|
min: 90,
|
|
|
|
},
|
|
|
|
hostname: "omnitek",
|
2021-09-09 05:47:34 +02:00
|
|
|
literature: [LiteratureNames.CodedIntelligence, LiteratureNames.HistoryOfSynthoids],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 9,
|
|
|
|
min: 7,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 22e9,
|
|
|
|
min: 13e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 13,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenOmniTekIncorporated,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 1100,
|
|
|
|
min: 900,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 99,
|
|
|
|
min: 95,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenOmniTekIncorporated,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 75,
|
|
|
|
min: 55,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
hostname: "4sigma",
|
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 25e9,
|
|
|
|
min: 15e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 13,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12FourSigma,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1250,
|
|
|
|
min: 900,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 99,
|
|
|
|
min: 75,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12FourSigma,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 99,
|
|
|
|
min: 95,
|
|
|
|
},
|
|
|
|
hostname: "kuai-gong",
|
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 30e9,
|
|
|
|
min: 20e9,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 13,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.ChongqingKuaiGongInternational,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1300,
|
|
|
|
min: 950,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 99,
|
|
|
|
min: 90,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.ChongqingKuaiGongInternational,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 97,
|
|
|
|
min: 83,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
hostname: "fulcrumtech",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.SimulatedReality],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 11,
|
|
|
|
min: 7,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1800e6,
|
|
|
|
min: 1400e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 12,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumFulcrumTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1250,
|
|
|
|
min: 950,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 99,
|
|
|
|
min: 80,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumFulcrumTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 99,
|
|
|
|
hostname: "fulcrumassets",
|
2018-09-11 21:58:32 +02:00
|
|
|
moneyAvailable: 1e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
networkLayer: 15,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumFulcrumTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1600,
|
|
|
|
min: 1100,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: 1,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.FulcrumSecretTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 92,
|
|
|
|
min: 78,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
hostname: "stormtech",
|
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1200e6,
|
|
|
|
min: 1000e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 12,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.IshimaStormTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1075,
|
|
|
|
min: 875,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 92,
|
|
|
|
min: 68,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.IshimaStormTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 96,
|
|
|
|
min: 84,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
hostname: "defcomm",
|
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 950e6,
|
|
|
|
min: 800e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 9,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.NewTokyoDefComm,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1050,
|
|
|
|
min: 850,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
serverGrowth: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 73,
|
|
|
|
min: 47,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.NewTokyoDefComm,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 90,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
hostname: "infocomm",
|
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 900e6,
|
|
|
|
min: 600e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 10,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "InfoComm",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 950,
|
|
|
|
min: 875,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 75,
|
|
|
|
min: 35,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 95,
|
|
|
|
min: 85,
|
|
|
|
},
|
|
|
|
hostname: "helios",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.BeyondMan],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 8,
|
|
|
|
min: 5,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 750e6,
|
|
|
|
min: 550e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 12,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenHeliosLabs,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 900,
|
|
|
|
min: 800,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenHeliosLabs,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 90,
|
|
|
|
min: 80,
|
|
|
|
},
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.NewTokyoVitaLife.toLowerCase(),
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.AGreenTomorrow],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 800e6,
|
|
|
|
min: 700e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 12,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.NewTokyoVitaLife,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 900,
|
|
|
|
min: 775,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 80,
|
|
|
|
min: 60,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.NewTokyoVitaLife,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 95,
|
|
|
|
min: 85,
|
|
|
|
},
|
|
|
|
hostname: "icarus",
|
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1000e6,
|
|
|
|
min: 900e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 9,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12IcarusMicrosystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 925,
|
|
|
|
min: 850,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 95,
|
|
|
|
min: 85,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12IcarusMicrosystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 90,
|
|
|
|
min: 80,
|
|
|
|
},
|
|
|
|
hostname: "univ-energy",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
2018-09-11 21:58:32 +02:00
|
|
|
max: 1200e6,
|
|
|
|
min: 1100e6,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
networkLayer: 9,
|
|
|
|
numOpenPortsRequired: 4,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12UniversalEnergy,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 900,
|
|
|
|
min: 800,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 90,
|
|
|
|
min: 80,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12UniversalEnergy,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
hostname: "titan-labs",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.CodedIntelligence],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 900000000,
|
|
|
|
min: 750000000,
|
|
|
|
},
|
|
|
|
networkLayer: 11,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "Titan Laboratories",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 875,
|
|
|
|
min: 800,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 80,
|
|
|
|
min: 60,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 75,
|
|
|
|
min: 65,
|
|
|
|
},
|
|
|
|
hostname: "microdyne",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.SyntheticMuscles],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 700000000,
|
|
|
|
min: 500000000,
|
|
|
|
},
|
|
|
|
networkLayer: 11,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "Microdyne Technologies",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 875,
|
|
|
|
min: 800,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 90,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
hostname: "taiyang-digital",
|
2021-09-09 05:47:34 +02:00
|
|
|
literature: [LiteratureNames.AGreenTomorrow, LiteratureNames.BrighterThanTheSun],
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 900000000,
|
|
|
|
min: 800000000,
|
|
|
|
},
|
|
|
|
networkLayer: 10,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "Taiyang Digital",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 950,
|
|
|
|
min: 850,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 65,
|
|
|
|
min: 55,
|
|
|
|
},
|
|
|
|
hostname: "galactic-cyber",
|
|
|
|
moneyAvailable: {
|
|
|
|
max: 850000000,
|
|
|
|
min: 750000000,
|
|
|
|
},
|
|
|
|
networkLayer: 7,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumGalacticCybersystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 875,
|
|
|
|
min: 825,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 90,
|
|
|
|
min: 70,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumGalacticCybersystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 90,
|
|
|
|
min: 80,
|
|
|
|
},
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.AevumAeroCorp.toLowerCase(),
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.ManAndMachine],
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 1200000000,
|
|
|
|
min: 1000000000,
|
|
|
|
},
|
|
|
|
networkLayer: 7,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumAeroCorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 925,
|
|
|
|
min: 850,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 65,
|
|
|
|
min: 55,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumAeroCorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 95,
|
|
|
|
min: 85,
|
|
|
|
},
|
|
|
|
hostname: "omnia",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.HistoryOfSynthoids],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 1000000000,
|
|
|
|
min: 900000000,
|
|
|
|
},
|
|
|
|
networkLayer: 8,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenOmniaCybersystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 950,
|
|
|
|
min: 850,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 70,
|
|
|
|
min: 60,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenOmniaCybersystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 65,
|
|
|
|
min: 55,
|
|
|
|
},
|
|
|
|
hostname: "zb-def",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.SyntheticMuscles],
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 1100000000,
|
|
|
|
min: 900000000,
|
|
|
|
},
|
|
|
|
networkLayer: 10,
|
|
|
|
numOpenPortsRequired: 4,
|
|
|
|
organizationName: "ZB Defense Industries",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 825,
|
|
|
|
min: 775,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 75,
|
|
|
|
min: 65,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 60,
|
|
|
|
},
|
|
|
|
hostname: "applied-energetics",
|
|
|
|
moneyAvailable: {
|
|
|
|
max: 1000000000,
|
|
|
|
min: 700000000,
|
|
|
|
},
|
|
|
|
networkLayer: 11,
|
|
|
|
numOpenPortsRequired: 4,
|
|
|
|
organizationName: "Applied Energetics",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 850,
|
|
|
|
min: 775,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 75,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
hostname: "solaris",
|
2021-09-09 05:47:34 +02:00
|
|
|
literature: [LiteratureNames.AGreenTomorrow, LiteratureNames.TheFailedFrontier],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 900000000,
|
|
|
|
min: 700000000,
|
|
|
|
},
|
|
|
|
networkLayer: 9,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.ChongqingSolarisSpaceSystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 850,
|
|
|
|
min: 750,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.ChongqingSolarisSpaceSystems,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 85,
|
|
|
|
min: 75,
|
|
|
|
},
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.Sector12DeltaOne.toLowerCase(),
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 1700000000,
|
|
|
|
min: 1300000000,
|
|
|
|
},
|
|
|
|
networkLayer: 8,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12DeltaOne,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 900,
|
|
|
|
min: 800,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 70,
|
|
|
|
min: 50,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12DeltaOne,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 85,
|
|
|
|
min: 75,
|
|
|
|
},
|
|
|
|
hostname: "global-pharm",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.AGreenTomorrow],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 3,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 1750000000,
|
|
|
|
min: 1500000000,
|
|
|
|
},
|
|
|
|
networkLayer: 7,
|
|
|
|
numOpenPortsRequired: 4,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.NewTokyoGlobalPharmaceuticals,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 850,
|
|
|
|
min: 750,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 90,
|
|
|
|
min: 80,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.NewTokyoGlobalPharmaceuticals,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 60,
|
|
|
|
},
|
|
|
|
hostname: "nova-med",
|
|
|
|
moneyAvailable: {
|
|
|
|
max: 1250000000,
|
|
|
|
min: 1100000000,
|
|
|
|
},
|
|
|
|
networkLayer: 10,
|
|
|
|
numOpenPortsRequired: 4,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.IshimaNovaMedical,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 850,
|
|
|
|
min: 775,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 85,
|
|
|
|
min: 65,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.IshimaNovaMedical,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 90,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
hostname: "zeus-med",
|
|
|
|
moneyAvailable: {
|
|
|
|
max: 1500000000,
|
|
|
|
min: 1300000000,
|
|
|
|
},
|
|
|
|
networkLayer: 9,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "Zeus Medical",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 850,
|
|
|
|
min: 800,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
hostname: "unitalife",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 1100000000,
|
|
|
|
min: 1000000000,
|
|
|
|
},
|
|
|
|
networkLayer: 8,
|
|
|
|
numOpenPortsRequired: 4,
|
|
|
|
organizationName: "UnitaLife Group",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 825,
|
|
|
|
min: 775,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 60,
|
|
|
|
},
|
|
|
|
hostname: "lexo-corp",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 800000000,
|
|
|
|
min: 700000000,
|
|
|
|
},
|
|
|
|
networkLayer: 6,
|
|
|
|
numOpenPortsRequired: 4,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenLexoCorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 750,
|
|
|
|
min: 650,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 65,
|
|
|
|
min: 55,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenLexoCorp,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 60,
|
|
|
|
min: 40,
|
|
|
|
},
|
|
|
|
hostname: "rho-construction",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 700000000,
|
|
|
|
min: 500000000,
|
|
|
|
},
|
|
|
|
networkLayer: 6,
|
|
|
|
numOpenPortsRequired: 3,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumRhoConstruction,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 525,
|
|
|
|
min: 475,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 60,
|
|
|
|
min: 40,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumRhoConstruction,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 70,
|
|
|
|
min: 50,
|
|
|
|
},
|
|
|
|
hostname: "alpha-ent",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.Sector12Crime],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 750000000,
|
|
|
|
min: 600000000,
|
|
|
|
},
|
|
|
|
networkLayer: 6,
|
|
|
|
numOpenPortsRequired: 4,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12AlphaEnterprises,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 600,
|
|
|
|
min: 500,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 60,
|
|
|
|
min: 50,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12AlphaEnterprises,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 70,
|
|
|
|
},
|
|
|
|
hostname: "aevum-police",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 400000000,
|
|
|
|
min: 200000000,
|
|
|
|
},
|
|
|
|
networkLayer: 6,
|
|
|
|
numOpenPortsRequired: 4,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumPolice,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 450,
|
|
|
|
min: 400,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 50,
|
|
|
|
min: 30,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumPolice,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 55,
|
|
|
|
min: 45,
|
|
|
|
},
|
|
|
|
hostname: "rothman-uni",
|
|
|
|
literature: [
|
2021-03-14 07:08:24 +01:00
|
|
|
LiteratureNames.SecretSocieties,
|
|
|
|
LiteratureNames.TheFailedFrontier,
|
|
|
|
LiteratureNames.TensionsInTechRace,
|
2018-09-07 05:56:59 +02:00
|
|
|
],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 250000000,
|
|
|
|
min: 175000000,
|
|
|
|
},
|
|
|
|
networkLayer: 5,
|
|
|
|
numOpenPortsRequired: 3,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12RothmanUniversity,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 430,
|
|
|
|
min: 370,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 45,
|
|
|
|
min: 35,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12RothmanUniversity,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 85,
|
|
|
|
min: 65,
|
|
|
|
},
|
|
|
|
hostname: "zb-institute",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 1100000000,
|
|
|
|
min: 800000000,
|
|
|
|
},
|
|
|
|
networkLayer: 5,
|
|
|
|
numOpenPortsRequired: 5,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenZBInstituteOfTechnology,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 775,
|
|
|
|
min: 725,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 85,
|
|
|
|
min: 75,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenZBInstituteOfTechnology,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 65,
|
|
|
|
min: 45,
|
|
|
|
},
|
|
|
|
hostname: "summit-uni",
|
2021-09-09 05:47:34 +02:00
|
|
|
literature: [LiteratureNames.SecretSocieties, LiteratureNames.TheFailedFrontier, LiteratureNames.SyntheticMuscles],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 350000000,
|
|
|
|
min: 200000000,
|
|
|
|
},
|
|
|
|
networkLayer: 5,
|
|
|
|
numOpenPortsRequired: 3,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumSummitUniversity,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 475,
|
|
|
|
min: 425,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 60,
|
|
|
|
min: 40,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumSummitUniversity,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 60,
|
|
|
|
},
|
|
|
|
hostname: "syscore",
|
|
|
|
moneyAvailable: {
|
|
|
|
max: 600000000,
|
|
|
|
min: 400000000,
|
|
|
|
},
|
|
|
|
networkLayer: 5,
|
|
|
|
numOpenPortsRequired: 4,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenSysCoreSecurities,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 650,
|
|
|
|
min: 550,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 70,
|
|
|
|
min: 60,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenSysCoreSecurities,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 70,
|
|
|
|
min: 60,
|
|
|
|
},
|
|
|
|
hostname: "catalyst",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.TensionsInTechRace],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 550000000,
|
|
|
|
min: 300000000,
|
|
|
|
},
|
|
|
|
networkLayer: 5,
|
|
|
|
numOpenPortsRequired: 3,
|
|
|
|
organizationName: "Catalyst Ventures",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 450,
|
|
|
|
min: 400,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 55,
|
|
|
|
min: 25,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 45,
|
|
|
|
min: 35,
|
|
|
|
},
|
|
|
|
hostname: "the-hub",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 3,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 200000000,
|
|
|
|
min: 150000000,
|
|
|
|
},
|
|
|
|
networkLayer: 4,
|
|
|
|
numOpenPortsRequired: 2,
|
|
|
|
organizationName: "The Hub",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 325,
|
|
|
|
min: 275,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 55,
|
|
|
|
min: 45,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 65,
|
|
|
|
min: 55,
|
|
|
|
},
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.VolhavenCompuTek.toLowerCase(),
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.ManAndMachine],
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 250000000,
|
|
|
|
min: 220000000,
|
|
|
|
},
|
|
|
|
networkLayer: 4,
|
|
|
|
numOpenPortsRequired: 3,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.VolhavenCompuTek,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 400,
|
|
|
|
min: 300,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 65,
|
|
|
|
min: 45,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenCompuTek,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 80,
|
|
|
|
min: 60,
|
|
|
|
},
|
|
|
|
hostname: "netlink",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.SimulatedReality],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 275000000,
|
|
|
|
networkLayer: 4,
|
|
|
|
numOpenPortsRequired: 3,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.AevumNetLinkTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 425,
|
|
|
|
min: 375,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 75,
|
|
|
|
min: 45,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumNetLinkTechnologies,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 65,
|
|
|
|
min: 35,
|
|
|
|
},
|
|
|
|
hostname: "johnson-ortho",
|
|
|
|
moneyAvailable: {
|
|
|
|
max: 85000000,
|
|
|
|
min: 70000000,
|
|
|
|
},
|
|
|
|
networkLayer: 4,
|
|
|
|
numOpenPortsRequired: 2,
|
|
|
|
organizationName: "Johnson Orthopedics",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 300,
|
|
|
|
min: 250,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 65,
|
|
|
|
min: 35,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-04-29 02:07:26 +02:00
|
|
|
hackDifficulty: 1,
|
2021-05-02 04:54:48 +02:00
|
|
|
hostname: "n00dles",
|
2021-05-03 18:56:27 +02:00
|
|
|
literature: [],
|
2021-05-02 04:54:48 +02:00
|
|
|
maxRamExponent: 2,
|
|
|
|
moneyAvailable: 70000,
|
|
|
|
networkLayer: 1,
|
|
|
|
numOpenPortsRequired: 0,
|
2021-05-03 18:56:27 +02:00
|
|
|
organizationName: LocationName.NewTokyoNoodleBar,
|
2021-05-02 04:54:48 +02:00
|
|
|
requiredHackingSkill: 1,
|
|
|
|
serverGrowth: 3000,
|
2021-05-03 18:56:27 +02:00
|
|
|
specialName: LocationName.NewTokyoNoodleBar,
|
2021-05-02 04:54:48 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 10,
|
2022-03-19 09:09:59 +01:00
|
|
|
hostname: LocationName.Sector12FoodNStuff.toLowerCase(),
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.Sector12Crime],
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 4,
|
2021-05-02 04:54:48 +02:00
|
|
|
moneyAvailable: 2000000,
|
2018-09-07 05:56:59 +02:00
|
|
|
networkLayer: 1,
|
|
|
|
numOpenPortsRequired: 0,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.Sector12FoodNStuff,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: 1,
|
2021-05-02 04:54:48 +02:00
|
|
|
serverGrowth: 5,
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12FoodNStuff,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
2021-05-02 04:54:48 +02:00
|
|
|
hackDifficulty: 10,
|
2018-09-07 05:56:59 +02:00
|
|
|
hostname: "sigma-cosmetics",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 4,
|
2021-05-02 04:54:48 +02:00
|
|
|
moneyAvailable: 2300000,
|
2018-09-07 05:56:59 +02:00
|
|
|
networkLayer: 1,
|
|
|
|
numOpenPortsRequired: 0,
|
|
|
|
organizationName: "Sigma Cosmetics",
|
|
|
|
requiredHackingSkill: 5,
|
2021-05-02 04:54:48 +02:00
|
|
|
serverGrowth: 10,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
2021-05-02 04:54:48 +02:00
|
|
|
hackDifficulty: 15,
|
2018-09-07 05:56:59 +02:00
|
|
|
hostname: "joesguns",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 4,
|
2021-05-02 04:54:48 +02:00
|
|
|
moneyAvailable: 2500000,
|
2018-09-07 05:56:59 +02:00
|
|
|
networkLayer: 1,
|
|
|
|
numOpenPortsRequired: 0,
|
2021-04-20 03:26:51 +02:00
|
|
|
organizationName: LocationName.Sector12JoesGuns,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: 10,
|
2021-05-02 04:54:48 +02:00
|
|
|
serverGrowth: 20,
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12JoesGuns,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 25,
|
|
|
|
hostname: "zer0",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 5,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 7500000,
|
|
|
|
networkLayer: 2,
|
|
|
|
numOpenPortsRequired: 1,
|
|
|
|
organizationName: "ZER0 Nightclub",
|
|
|
|
requiredHackingSkill: 75,
|
|
|
|
serverGrowth: 40,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 20,
|
|
|
|
hostname: "nectar-net",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 4,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 2750000,
|
|
|
|
networkLayer: 2,
|
|
|
|
numOpenPortsRequired: 0,
|
|
|
|
organizationName: "Nectar Nightclub Network",
|
|
|
|
requiredHackingSkill: 20,
|
|
|
|
serverGrowth: 25,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 25,
|
|
|
|
hostname: "neo-net",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.TheHiddenWorld],
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 5,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 5000000,
|
|
|
|
networkLayer: 3,
|
|
|
|
numOpenPortsRequired: 1,
|
|
|
|
organizationName: "Neo Nightclub Network",
|
|
|
|
requiredHackingSkill: 50,
|
|
|
|
serverGrowth: 25,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 30,
|
|
|
|
hostname: "silver-helix",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.NewTriads],
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 6,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 45000000,
|
|
|
|
networkLayer: 3,
|
|
|
|
numOpenPortsRequired: 2,
|
|
|
|
organizationName: "Silver Helix",
|
|
|
|
requiredHackingSkill: 150,
|
|
|
|
serverGrowth: 30,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 15,
|
|
|
|
hostname: "hong-fang-tea",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.BrighterThanTheSun],
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 4,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 3000000,
|
|
|
|
networkLayer: 1,
|
|
|
|
numOpenPortsRequired: 0,
|
|
|
|
organizationName: "HongFang Teahouse",
|
|
|
|
requiredHackingSkill: 30,
|
|
|
|
serverGrowth: 20,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 15,
|
|
|
|
hostname: "harakiri-sushi",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 4,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 4000000,
|
|
|
|
networkLayer: 1,
|
|
|
|
numOpenPortsRequired: 0,
|
|
|
|
organizationName: "HaraKiri Sushi Bar Network",
|
|
|
|
requiredHackingSkill: 40,
|
|
|
|
serverGrowth: 40,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 20,
|
|
|
|
hostname: "phantasy",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 5,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 24000000,
|
|
|
|
networkLayer: 3,
|
|
|
|
numOpenPortsRequired: 2,
|
|
|
|
organizationName: "Phantasy Club",
|
|
|
|
requiredHackingSkill: 100,
|
|
|
|
serverGrowth: 35,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 15,
|
|
|
|
hostname: "max-hardware",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 5,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 10000000,
|
|
|
|
networkLayer: 2,
|
|
|
|
numOpenPortsRequired: 1,
|
|
|
|
organizationName: "Max Hardware Store",
|
|
|
|
requiredHackingSkill: 80,
|
|
|
|
serverGrowth: 30,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 35,
|
|
|
|
min: 25,
|
|
|
|
},
|
|
|
|
hostname: "omega-net",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.TheNewGod],
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 5,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: {
|
|
|
|
max: 70000000,
|
|
|
|
min: 60000000,
|
|
|
|
},
|
|
|
|
networkLayer: 3,
|
|
|
|
numOpenPortsRequired: 2,
|
2019-06-03 08:29:56 +02:00
|
|
|
organizationName: LocationName.IshimaOmegaSoftware,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 220,
|
|
|
|
min: 180,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 40,
|
|
|
|
min: 30,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.IshimaOmegaSoftware,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 45,
|
|
|
|
min: 35,
|
|
|
|
},
|
|
|
|
hostname: "crush-fitness",
|
|
|
|
moneyAvailable: {
|
|
|
|
max: 60000000,
|
|
|
|
min: 40000000,
|
|
|
|
},
|
|
|
|
networkLayer: 4,
|
|
|
|
numOpenPortsRequired: 2,
|
|
|
|
organizationName: "Crush Fitness",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 275,
|
|
|
|
min: 225,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 33,
|
|
|
|
min: 27,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumCrushFitnessGym,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 30,
|
|
|
|
hostname: "iron-gym",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 5,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 20000000,
|
|
|
|
networkLayer: 1,
|
|
|
|
numOpenPortsRequired: 1,
|
2022-03-19 09:09:59 +01:00
|
|
|
organizationName: `${LocationName.Sector12IronGym} Network`,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: 100,
|
|
|
|
serverGrowth: 20,
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12IronGym,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 55,
|
|
|
|
min: 45,
|
|
|
|
},
|
|
|
|
hostname: "millenium-fitness",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 8,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 250000000,
|
|
|
|
networkLayer: 6,
|
|
|
|
numOpenPortsRequired: 3,
|
|
|
|
organizationName: "Millenium Fitness Network",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 525,
|
|
|
|
min: 475,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 45,
|
|
|
|
min: 25,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.VolhavenMilleniumFitnessGym,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 65,
|
|
|
|
min: 55,
|
|
|
|
},
|
|
|
|
hostname: "powerhouse-fitness",
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 6,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 900000000,
|
|
|
|
networkLayer: 14,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "Powerhouse Fitness",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 1100,
|
|
|
|
min: 950,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 60,
|
|
|
|
min: 50,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.Sector12PowerhouseGym,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: {
|
|
|
|
max: 60,
|
|
|
|
min: 40,
|
|
|
|
},
|
|
|
|
hostname: "snap-fitness",
|
|
|
|
moneyAvailable: 450000000,
|
|
|
|
networkLayer: 7,
|
|
|
|
numOpenPortsRequired: 4,
|
|
|
|
organizationName: "Snap Fitness",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 800,
|
|
|
|
min: 675,
|
|
|
|
},
|
|
|
|
serverGrowth: {
|
|
|
|
max: 60,
|
|
|
|
min: 40,
|
|
|
|
},
|
2021-04-20 03:26:51 +02:00
|
|
|
specialName: LocationName.AevumSnapFitnessGym,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 0,
|
|
|
|
hostname: "run4theh111z",
|
2021-09-05 01:09:30 +02:00
|
|
|
literature: [LiteratureNames.SimulatedReality, LiteratureNames.TheNewGod],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 9,
|
|
|
|
min: 5,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 0,
|
|
|
|
networkLayer: 11,
|
|
|
|
numOpenPortsRequired: 4,
|
|
|
|
organizationName: "The Runners",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 550,
|
|
|
|
min: 505,
|
|
|
|
},
|
|
|
|
serverGrowth: 0,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.BitRunnersServer,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 0,
|
|
|
|
hostname: "I.I.I.I",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.DemocracyIsDead],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 8,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 0,
|
|
|
|
networkLayer: 5,
|
|
|
|
numOpenPortsRequired: 3,
|
|
|
|
organizationName: "I.I.I.I",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 365,
|
|
|
|
min: 340,
|
|
|
|
},
|
|
|
|
serverGrowth: 0,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.TheBlackHandServer,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 0,
|
|
|
|
hostname: "avmnite-02h",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.DemocracyIsDead],
|
2018-09-11 21:58:32 +02:00
|
|
|
maxRamExponent: {
|
2021-09-05 01:09:30 +02:00
|
|
|
max: 7,
|
|
|
|
min: 4,
|
2018-09-11 21:58:32 +02:00
|
|
|
},
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 0,
|
|
|
|
networkLayer: 4,
|
|
|
|
numOpenPortsRequired: 2,
|
2022-03-19 09:09:59 +01:00
|
|
|
organizationName: FactionNames.NiteSec,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 220,
|
|
|
|
min: 202,
|
|
|
|
},
|
|
|
|
serverGrowth: 0,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.NiteSecServer,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 0,
|
|
|
|
hostname: ".",
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 4,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 0,
|
|
|
|
networkLayer: 13,
|
|
|
|
numOpenPortsRequired: 4,
|
|
|
|
organizationName: ".",
|
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 550,
|
|
|
|
min: 505,
|
|
|
|
},
|
|
|
|
serverGrowth: 0,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.TheDarkArmyServer,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 0,
|
|
|
|
hostname: "CSEC",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.DemocracyIsDead],
|
2018-09-07 06:25:48 +02:00
|
|
|
maxRamExponent: 3,
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 0,
|
|
|
|
networkLayer: 2,
|
|
|
|
numOpenPortsRequired: 1,
|
2022-03-19 09:09:59 +01:00
|
|
|
organizationName: FactionNames.CyberSec,
|
2018-09-07 05:56:59 +02:00
|
|
|
requiredHackingSkill: {
|
|
|
|
max: 60,
|
|
|
|
min: 51,
|
|
|
|
},
|
|
|
|
serverGrowth: 0,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.CyberSecServer,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 0,
|
|
|
|
hostname: "The-Cave",
|
2021-03-14 07:08:24 +01:00
|
|
|
literature: [LiteratureNames.AlphaOmega],
|
2018-09-07 05:56:59 +02:00
|
|
|
moneyAvailable: 0,
|
|
|
|
networkLayer: 15,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "Helios",
|
|
|
|
requiredHackingSkill: 925,
|
|
|
|
serverGrowth: 0,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.DaedalusServer,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hackDifficulty: 0,
|
|
|
|
hostname: "w0r1d_d43m0n",
|
|
|
|
moneyAvailable: 0,
|
|
|
|
numOpenPortsRequired: 5,
|
|
|
|
organizationName: "w0r1d_d43m0n",
|
|
|
|
requiredHackingSkill: 3000,
|
|
|
|
serverGrowth: 0,
|
2021-10-07 23:55:49 +02:00
|
|
|
specialName: SpecialServers.WorldDaemon,
|
2018-09-07 05:56:59 +02:00
|
|
|
},
|
2021-09-05 01:09:30 +02:00
|
|
|
];
|