bitburner-src/src/Augmentations.js

1226 lines
74 KiB
JavaScript
Raw Normal View History

2016-12-22 16:56:15 +01:00
//Augmentations
function Augmentation(name) {
this.name = name;
this.info = "";
this.owned = false; //Whether the player has it (you can only have each augmentation once)
this.factionInstalledBy = ""; //Which faction the Player got this from
//Price and reputation base requirements (can change based on faction multipliers)
this.baseRepRequirement = 0;
this.baseCost = 0;
//Level - Only applicable for some augmentations
// NeuroFlux Governor
this.level = 0;
2016-12-22 16:56:15 +01:00
}
2017-02-27 23:14:11 +01:00
Augmentation.prototype.setInfo = function(inf) {
this.info = inf;
}
2017-02-27 23:14:11 +01:00
Augmentation.prototype.setRequirements = function(rep, cost) {
this.baseRepRequirement = rep;
this.baseCost = cost;
2016-12-22 16:56:15 +01:00
}
2017-02-09 19:35:28 +01:00
//Takes in an array of faction names and adds this augmentation to all of those factions
2017-02-27 23:14:11 +01:00
Augmentation.prototype.addToFactions = function(factionList) {
for (var i = 0; i < factionList.length; ++i) {
var faction = Factions[factionList[i]];
2017-02-27 23:14:11 +01:00
if (faction == null) {
console.log("Error: Could not find faction with this name:" + factionList[i]);
2017-04-19 21:19:33 +02:00
continue;
}
faction.augmentations.push(this.name);
}
2017-02-09 19:35:28 +01:00
}
Augmentation.prototype.addToAllFactions = function() {
for (var fac in Factions) {
if (Factions.hasOwnProperty(fac)) {
var facObj = Factions[fac];
if (facObj == null) {
console.log("ERROR: Invalid faction object");
continue;
}
facObj.augmentations.push(this.name);
}
}
}
2016-12-22 16:56:15 +01:00
Augmentation.prototype.toJSON = function() {
return Generic_toJSON("Augmentation", this);
2016-12-22 16:56:15 +01:00
}
Augmentation.fromJSON = function(value) {
return Generic_fromJSON(Augmentation, value.data);
2016-12-22 16:56:15 +01:00
}
Reviver.constructors.Augmentation = Augmentation;
Augmentations = {}
AddToAugmentations = function(aug) {
var name = aug.name;
Augmentations[name] = aug;
2016-12-22 16:56:15 +01:00
}
2017-05-07 10:22:50 +02:00
AugmentationNames = {
Targeting1: "Augmented Targeting I",
Targeting2: "Augmented Targeting II",
Targeting3: "Augmented Targeting III",
SyntheticHeart: "Synthetic Heart",
SynfibrilMuscle: "Synfibril Muscle",
CombatRib1: "Combat Rib I",
CombatRib2: "Combat Rib II",
CombatRib3: "Combat Rib III",
NanofiberWeave: "Nanofiber Weave",
SubdermalArmor: "NEMEAN Subdermal Weave",
WiredReflexes: "Wired Reflexes",
GrapheneBoneLacings: "Graphene Bone Lacings",
BionicSpine: "Bionic Spine",
GrapheneBionicSpine: "Graphene Bionic Spine Upgrade",
BionicLegs: "Bionic Legs",
GrapheneBionicLegs: "Graphene Bionic Legs Upgrade",
SpeechProcessor: "Speech Processor Implant",
TITN41Injection: "TITN-41 Gene-Modification Injection",
EnhancedSocialInteractionImplant: "Enhanced Social Interaction Implant",
BitWire: "BitWire",
ArtificialBioNeuralNetwork: "Artificial Bio-neural Network Implant",
ArtificialSynapticPotentiation: "Artificial Synaptic Potentiation",
EnhancedMyelinSheathing: "Enhanced Myelin Sheathing",
SynapticEnhancement: "Synaptic Enhancement Implant",
NeuralRetentionEnhancement: "Neural-Retention Enhancement",
DataJack: "DataJack",
ENM: "Embedded Netburner Module",
ENMCore: "Embedded Netburner Module Core Implant",
ENMCoreV2: "Embedded Netburner Module Core V2 Upgrade",
ENMCoreV3: "Embedded Netburner Module Core V3 Upgrade",
ENMAnalyzeEngine: "Embedded Netburner Module Analyze Engine",
ENMDMA: "Embedded Netburner Module Direct Memory Access Upgrade",
Neuralstimulator: "Neuralstimulator",
NuoptimalInjectorImplant: "Nuoptimal Nootropic Injector Implant",
SpeechEnhancement: "Speech Enhancement",
FocusWire: "FocusWire",
PCDNI: "PC Direct-Neural Interface",
PCDNIOptimizer: "PC Direct-Neural Interface Optimization Submodule",
PCDNINeuralNetwork: "PC Direct-Neural Interface NeuroNet Injector",
ADRPheromone1: "ADR-V1 Pheromone Gene",
HacknetNodeCPUUpload: "Hacknet Node CPU Architecture Neural-Upload",
HacknetNodeCacheUpload: "Hacknet Node Cache Architecture Neural-Upload",
HacknetNodeNICUpload: "HacknetNode NIC Architecture Neural-Upload",
HacknetNodeKernelDNI: "Hacknet Node Kernel Direct-Neural Interface",
HacknetNodeCoreDNI: "Hacknet Node Core Direct-Neural Interface",
NeuroFluxGovernor: "NeuroFlux Governor",
2017-05-07 10:22:50 +02:00
Neurotrainer1: "Neurotrainer I",
Neurotrainer2: "Neurotrainer II",
Neurotrainer3: "Neurotrainer III",
Hypersight: "HyperSight Corneal Implant",
LuminCloaking1: "LuminCloaking-V1 Skin Implant",
LuminCloaking2: "LuminCloaking-V2 Skin Implant",
HemoRecirculator: "HemoRecirculator",
2017-05-12 21:21:31 +02:00
SmartSonar: "SmartSonar Implant",
PowerRecirculator: "Power Recirculation Core"
2017-05-07 10:22:50 +02:00
}
2016-12-22 16:56:15 +01:00
initAugmentations = function() {
//Combat stat augmentations
var HemoRecirculator = new Augmentation(AugmentationNames.HemoRecirculator);
HemoRecirculator.setInfo("A heart implant that greatly increases the body's ability to effectively use and pump " +
"blood. <br><br> This augmentation increases all of the player's combat stats by 15%.")
HemoRecirculator.setRequirements(6000, 10000000);
HemoRecirculator.addToFactions(["Tetrads", "The Dark Army", "The Syndicate"]);
if (augmentationExists(AugmentationNames.HemoRecirculator)) {
HemoRecirculator.owned = Augmentations[AugmentationNames.HemoRecirculator].owned;
delete Augmentations[AugmentationNames.HemoRecirculator];
}
AddToAugmentations(HemoRecirculator);
2017-05-07 10:22:50 +02:00
var Targeting1 = new Augmentation(AugmentationNames.Targeting1);
Targeting1.setRequirements(2500, 3000000);
Targeting1.setInfo("This cranial implant is embedded within the player's inner ear structure and optic nerves. It regulates and enhances the user's " +
"balance and hand-eye coordination. It is also capable of augmenting reality by projecting digital information " +
2017-05-05 17:50:55 +02:00
"directly onto the retina. These enhancements allow the player to better lock-on and keep track of enemies. <br><br>" +
"This augmentation increases the player's dexterity by 20%.");
Targeting1.addToFactions(["Slum Snakes", "The Dark Army", "The Syndicate", "Sector-12", "Volhaven", "Ishima",
2017-05-07 10:22:50 +02:00
"OmniTek Incorporated", "KuaiGong International", "Blade Industries"]);
if (augmentationExists(AugmentationNames.Targeting1)) {
Targeting1.owned = Augmentations[AugmentationNames.Targeting1].owned;
delete Augmentations[AugmentationNames.Targeting1];
}
AddToAugmentations(Targeting1);
2017-05-07 10:22:50 +02:00
var Targeting2 = new Augmentation(AugmentationNames.Targeting2);
Targeting2.setRequirements(4000, 9000000);
Targeting2.setInfo("This is an upgrade of the Augmented Targeting I cranial implant, which is capable of augmenting reality " +
2017-05-05 17:50:55 +02:00
"and enhances the user's balance and hand-eye coordination. <br><br>This upgrade increases the player's dexterity " +
"by an additional 30%.");
2017-02-27 23:14:11 +01:00
Targeting2.addToFactions(["The Dark Army", "The Syndicate", "Sector-12", "Volhaven", "Ishima",
"OmniTek Incorporated", "KuaiGong International", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.Targeting2)) {
Targeting2.owned = Augmentations[AugmentationNames.Targeting2].owned;
delete Augmentations[AugmentationNames.Targeting2];
}
AddToAugmentations(Targeting2);
2017-05-07 10:22:50 +02:00
var Targeting3 = new Augmentation(AugmentationNames.Targeting3);
Targeting3.setRequirements(12000, 20000000);
Targeting3.setInfo("This is an upgrade of the Augmented Targeting II cranial implant, which is capable of augmenting reality " +
2017-05-05 17:50:55 +02:00
"and enhances the user's balance and hand-eye coordination. <br><br>This upgrade increases the player's dexterity " +
"by an additional 50%.");
2017-02-27 23:14:11 +01:00
Targeting3.addToFactions(["The Dark Army", "The Syndicate", "OmniTek Incorporated",
"KuaiGong International", "Blade Industries", "The Covenant"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.Targeting3)) {
Targeting3.owned = Augmentations[AugmentationNames.Targeting3].owned;
delete Augmentations[AugmentationNames.Targeting3];
}
AddToAugmentations(Targeting3);
2017-05-07 10:22:50 +02:00
var SyntheticHeart = new Augmentation(AugmentationNames.SyntheticHeart);
SyntheticHeart.setRequirements(300000, 500000000);
SyntheticHeart.setInfo("This advanced artificial heart, created from plasteel and graphene, is capable of pumping more blood " +
2017-05-05 17:50:55 +02:00
"at much higher efficiencies than a normal human heart.<br><br> This augmentation increases the player's agility " +
"and strength by 100%");
2017-02-27 23:14:11 +01:00
SyntheticHeart.addToFactions(["KuaiGong International", "Fulcrum Secret Technologies", "Speakers for the Dead",
"NWO", "The Covenant", "Daedalus", "Illuminati"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.SyntheticHeart)) {
SyntheticHeart.owned = Augmentations[AugmentationNames.SyntheticHeart].owned;
delete Augmentations[AugmentationNames.SyntheticHeart];
}
AddToAugmentations(SyntheticHeart);
2017-05-07 10:22:50 +02:00
var SynfibrilMuscle = new Augmentation(AugmentationNames.SynfibrilMuscle);
SynfibrilMuscle.setRequirements(225000, 300000000);
SynfibrilMuscle.setInfo("The myofibrils in human muscles are injected with special chemicals that react with the proteins inside " +
"the myofibrils, altering their underlying structure. The end result is muscles that are stronger and more elastic. " +
2017-05-05 17:50:55 +02:00
"Scientists have named these artificially enhanced units 'synfibrils'.<br><br> This augmentation increases the player's " +
"strength and defense by 50%.");
2017-02-27 23:14:11 +01:00
SynfibrilMuscle.addToFactions(["KuaiGong International", "Fulcrum Secret Technologies", "Speakers for the Dead",
"NWO", "The Covenant", "Daedalus", "Illuminati", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.SynfibrilMuscle)) {
SynfibrilMuscle.owned = Augmentations[AugmentationNames.SynfibrilMuscle].owned;
delete Augmentations[AugmentationNames.SynfibrilMuscle];
}
AddToAugmentations(SynfibrilMuscle)
2017-05-07 10:22:50 +02:00
var CombatRib1 = new Augmentation(AugmentationNames.CombatRib1);
CombatRib1.setRequirements(3500, 5000000);
CombatRib1.setInfo("The human body's ribs are replaced with artificial ribs that automatically and continuously release cognitive " +
2017-05-05 17:50:55 +02:00
"and performance-enhancing drugs into the bloodstream, improving the user's abilities in combat.<br><br>" +
"This augmentation increases the player's strength and defense by 15%.");
CombatRib1.addToFactions(["Slum Snakes", "The Dark Army", "The Syndicate", "Sector-12", "Volhaven", "Ishima",
2017-02-27 23:14:11 +01:00
"OmniTek Incorporated", "KuaiGong International", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.CombatRib1)) {
CombatRib1.owned = Augmentations[AugmentationNames.CombatRib1].owned;
delete Augmentations[AugmentationNames.CombatRib1];
}
AddToAugmentations(CombatRib1);
2017-05-07 10:22:50 +02:00
var CombatRib2 = new Augmentation(AugmentationNames.CombatRib2);
CombatRib2.setRequirements(8000, 12000000);
CombatRib2.setInfo("This is an upgrade to the Combat Rib I augmentation, and is capable of releasing even more potent combat-enhancing " +
"drugs into the bloodstream<br><br>. This upgrade increases the player's strength and defense by an additional 25%.")
2017-02-27 23:14:11 +01:00
CombatRib2.addToFactions(["The Dark Army", "The Syndicate", "Sector-12", "Volhaven", "Ishima",
"OmniTek Incorporated", "KuaiGong International", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.CombatRib2)) {
CombatRib2.owned = Augmentations[AugmentationNames.CombatRib2].owned;
delete Augmentations[AugmentationNames.CombatRib2];
}
AddToAugmentations(CombatRib2);
2017-05-07 10:22:50 +02:00
var CombatRib3 = new Augmentation(AugmentationNames.CombatRib3);
CombatRib3.setRequirements(12000, 18000000);
CombatRib3.setInfo("This is an upgrade to the Combat Rib II augmentation, and is capable of releasing even more potent combat-enhancing " +
"drugs into the bloodstream<br><br>. This upgrade increases the player's strength and defense by an additional 35%.");
2017-02-27 23:14:11 +01:00
CombatRib3.addToFactions(["The Dark Army", "The Syndicate", "OmniTek Incorporated",
"KuaiGong International", "Blade Industries", "The Covenant"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.CombatRib3)) {
CombatRib3.owned = Augmentations[AugmentationNames.CombatRib3].owned;
delete Augmentations[AugmentationNames.CombatRib3];
}
AddToAugmentations(CombatRib3);
2017-05-07 10:22:50 +02:00
var NanofiberWeave = new Augmentation(AugmentationNames.NanofiberWeave);
NanofiberWeave.setRequirements(15000, 15000000);
NanofiberWeave.setInfo("Synthetic nanofibers are woven into the skin's extracellular matrix using electrospinning. " +
2017-05-05 17:50:55 +02:00
"This improves the skin's ability to regenerate itself and protect the body from external stresses and forces.<br><br>" +
"This augmentation increases the player's strength and defense by 30%.");
2017-02-27 23:14:11 +01:00
NanofiberWeave.addToFactions(["Tian Di Hui", "The Syndicate", "The Dark Army", "Speakers for the Dead",
"Blade Industries", "Fulcrum Secret Technologies", "OmniTek Incorporated"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.NanofiberWeave)) {
NanofiberWeave.owned = Augmentations[AugmentationNames.NanofiberWeave].owned;
delete Augmentations[AugmentationNames.NanofiberWeave];
}
AddToAugmentations(NanofiberWeave);
2017-05-07 10:22:50 +02:00
var SubdermalArmor = new Augmentation(AugmentationNames.SubdermalArmor);
2017-05-03 21:25:24 +02:00
SubdermalArmor.setRequirements(600000, 750000000);
SubdermalArmor.setInfo("The NEMEAN Subdermal Weave is a thin, light-weight, graphene plating that houses a dilatant fluid. " +
"The material is implanted underneath the skin, and is the most advanced form of defensive enhancement " +
"that has ever been created. The dilatant fluid, despite being thin and light, is extremely effective " +
"at stopping piercing blows and reducing blunt trauma. The properties of graphene allow the plating to " +
2017-05-05 17:50:55 +02:00
"mitigate damage from any fire-related or electrical traumas.<br><br>" +
2017-02-21 23:23:42 +01:00
"This augmentation increases the player's defense by 150%.");
2017-02-27 23:14:11 +01:00
SubdermalArmor.addToFactions(["The Syndicate", "Fulcrum Secret Technologies", "Illuminati", "Daedalus",
"The Covenant"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.SubdermalArmor)) {
SubdermalArmor.owned = Augmentations[AugmentationNames.SubdermalArmor].owned;
delete Augmentations[AugmentationNames.SubdermalArmor];
}
AddToAugmentations(SubdermalArmor);
2017-05-07 10:22:50 +02:00
var WiredReflexes = new Augmentation(AugmentationNames.WiredReflexes);
WiredReflexes.setRequirements(600, 500000);
WiredReflexes.setInfo("Synthetic nerve-enhancements are injected into all major parts of the somatic nervous system, " +
2017-05-05 17:50:55 +02:00
"supercharging the body's ability to send signals through neurons. This results in increased reflex speed.<br><br>" +
"This augmentation increases the player's agility and dexterity by 10%.");
WiredReflexes.addToFactions(["Tian Di Hui", "Slum Snakes", "Sector-12", "Volhaven", "Aevum", "Ishima",
2017-02-27 23:14:11 +01:00
"The Syndicate", "The Dark Army", "Speakers for the Dead"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.WiredReflexes)) {
WiredReflexes.owned = Augmentations[AugmentationNames.WiredReflexes].owned;
delete Augmentations[AugmentationNames.WiredReflexes];
}
AddToAugmentations(WiredReflexes);
2017-05-07 10:22:50 +02:00
var GrapheneBoneLacings = new Augmentation(AugmentationNames.GrapheneBoneLacings);
GrapheneBoneLacings.setRequirements(450000, 750000000);
GrapheneBoneLacings.setInfo("A graphene-based material is grafted and fused into the user's bones, significantly increasing " +
2017-05-05 17:50:55 +02:00
"their density and tensile strength.<br><br>" +
2017-02-22 23:07:55 +01:00
"This augmentation increases the player's strength and defense by 100%.");
2017-02-27 23:14:11 +01:00
GrapheneBoneLacings.addToFactions(["Fulcrum Secret Technologies", "The Covenant"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.GrapheneBoneLacings)) {
GrapheneBoneLacings.owned = Augmentations[AugmentationNames.GrapheneBoneLacings].owned;
delete Augmentations[AugmentationNames.GrapheneBoneLacings];
}
AddToAugmentations(GrapheneBoneLacings);
2017-05-07 10:22:50 +02:00
var BionicSpine = new Augmentation(AugmentationNames.BionicSpine);
BionicSpine.setRequirements(30000, 25000000);
BionicSpine.setInfo("An artificial spine created from plasteel and carbon fibers that completely replaces the organic spine. " +
"Not only is the Bionic Spine physically stronger than a human spine, but it is also capable of digitally " +
"stimulating and regulating the neural signals that are sent and received by the spinal cord. This results in " +
2017-05-05 17:50:55 +02:00
"greatly improved senses and reaction speeds.<br><br>" +
2017-02-22 23:07:55 +01:00
"This augmentation increases all of the player's combat stats by 20%.");
2017-02-27 23:14:11 +01:00
BionicSpine.addToFactions(["Speakers for the Dead", "The Syndicate", "KuaiGong International",
"OmniTek Incorporated", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.BionicSpine)) {
BionicSpine.owned = Augmentations[AugmentationNames.BionicSpine].owned;
delete Augmentations[AugmentationNames.BionicSpine];
}
AddToAugmentations(BionicSpine);
2017-05-07 10:22:50 +02:00
var GrapheneBionicSpine = new Augmentation(AugmentationNames.GrapheneBionicSpine);
2017-05-03 21:25:24 +02:00
GrapheneBionicSpine.setRequirements(650000, 1000000000);
GrapheneBionicSpine.setInfo("An upgrade to the Bionic Spine augmentation. It fuses the implant with an advanced graphene " +
2017-05-05 17:50:55 +02:00
"material to make it much stronger and lighter.<br><br>" +
2017-02-22 23:07:55 +01:00
"This augmentation increases all of the player's combat stats by 100%.");
2017-02-27 23:14:11 +01:00
GrapheneBionicSpine.addToFactions(["Fulcrum Secret Technologies", "ECorp"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.GrapheneBionicSpine)) {
GrapheneBionicSpine.owned = Augmentations[AugmentationNames.GrapheneBionicSpine].owned;
delete Augmentations[AugmentationNames.GrapheneBionicSpine];
}
AddToAugmentations(GrapheneBionicSpine);
2017-05-07 10:22:50 +02:00
var BionicLegs = new Augmentation(AugmentationNames.BionicLegs);
2017-05-03 20:18:09 +02:00
BionicLegs.setRequirements(100000, 60000000);
2017-05-05 17:50:55 +02:00
BionicLegs.setInfo("Cybernetic legs created from plasteel and carbon fibers that completely replace the user's organic legs. <br><br>" +
"This augmentation increases the player's agility by 75%.");
2017-02-27 23:14:11 +01:00
BionicLegs.addToFactions(["Speakers for the Dead", "The Syndicate", "KuaiGong International",
"OmniTek Incorporated", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.BionicLegs)) {
BionicLegs.owned = Augmentations[AugmentationNames.BionicLegs].owned;
delete Augmentations[AugmentationNames.BionicLegs];
}
AddToAugmentations(BionicLegs);
2017-05-07 10:22:50 +02:00
var GrapheneBionicLegs = new Augmentation(AugmentationNames.GrapheneBionicLegs);
GrapheneBionicLegs.setRequirements(400000, 800000000);
GrapheneBionicLegs.setInfo("An upgrade to the Bionic Legs augmentation. It fuses the implant with an advanced graphene " +
2017-05-05 17:50:55 +02:00
"material to make it much stronger and lighter.<br><br>" +
"This augmentation increases the player's agility by an additional 200%.");
2017-02-27 23:14:11 +01:00
GrapheneBionicLegs.addToFactions(["MegaCorp", "ECorp", "Fulcrum Secret Technologies"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.GrapheneBionicLegs)) {
GrapheneBionicLegs.owned = Augmentations[AugmentationNames.GrapheneBionicLegs].owned;
delete Augmentations[AugmentationNames.GrapheneBionicLegs];
}
AddToAugmentations(GrapheneBionicLegs);
//Labor stat augmentations
2017-05-07 10:22:50 +02:00
var SpeechProcessor = new Augmentation(AugmentationNames.SpeechProcessor); //Cochlear imlant?
SpeechProcessor.setRequirements(3500, 25000000);
SpeechProcessor.setInfo("A cochlear implant with an embedded computer that analyzes incoming speech. " +
"The embedded computer processes characteristics of incoming speech, such as tone " +
2017-05-05 17:50:55 +02:00
"and inflection, to pick up on subtle cues and aid in social interaction.<br><br>" +
2017-02-22 23:07:55 +01:00
"This augmentation increases the player's charisma by 20%.");
2017-02-27 23:14:11 +01:00
SpeechProcessor.addToFactions(["Tian Di Hui", "Chongqing", "Sector-12", "New Tokyo", "Aevum",
"Ishima", "Volhaven", "Silhouette"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.SpeechProcessor)) {
SpeechProcessor.owned = Augmentations[AugmentationNames.SpeechProcessor].owned;
delete Augmentations[AugmentationNames.SpeechProcessor];
}
AddToAugmentations(SpeechProcessor);
2017-05-07 10:22:50 +02:00
TITN41Injection = new Augmentation(AugmentationNames.TITN41Injection);
2017-05-12 07:14:42 +02:00
TITN41Injection.setRequirements(10000, 30000000);
TITN41Injection.setInfo("TITN is a series of viruses that targets and alters the sequences of human DNA in genes that " +
"control personality. The TITN-41 strain alters these genes so that the subject becomes more " +
2017-05-05 17:50:55 +02:00
"outgoing and socialable. <br><br>" +
"This augmentation increases the player's charisma and charisma experience gain rate by 15%");
TITN41Injection.addToFactions(["Silhouette"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.TITN41Injection)) {
TITN41Injection.owned = Augmentations[AugmentationNames.TITN41Injection].owned;
delete Augmentations[AugmentationNames.TITN41Injection];
}
AddToAugmentations(TITN41Injection);
2017-05-07 10:22:50 +02:00
var EnhancedSocialInteractionImplant = new Augmentation(AugmentationNames.EnhancedSocialInteractionImplant);
2017-05-12 07:14:42 +02:00
EnhancedSocialInteractionImplant.setRequirements(200000, 300000000);
EnhancedSocialInteractionImplant.setInfo("A cranial implant that greatly assists in the user's ability to analyze social situations " +
"and interactions. The system uses a wide variety of factors such as facial expression, body " +
"language, and the voice's tone/inflection to determine the best course of action during social" +
"situations. The implant also uses deep learning software to continuously learn new behavior" +
2017-05-05 17:50:55 +02:00
"patterns and how to best respond.<br><br>" +
2017-02-22 23:07:55 +01:00
"This augmentation increases the player's charisma and charisma experience gain rate by 50%.");
2017-02-27 23:14:11 +01:00
EnhancedSocialInteractionImplant.addToFactions(["Bachman & Associates", "NWO", "Clarke Incorporated",
"OmniTek Incorporated", "Four Sigma"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.EnhancedSocialInteractionImplant)) {
EnhancedSocialInteractionImplant.owned = Augmentations[AugmentationNames.EnhancedSocialInteractionImplant].owned;
delete Augmentations[AugmentationNames.EnhancedSocialInteractionImplant];
}
AddToAugmentations(EnhancedSocialInteractionImplant);
//Hacking augmentations
2017-05-07 10:22:50 +02:00
var BitWire = new Augmentation(AugmentationNames.BitWire);
BitWire.setRequirements(1750, 2000000);
BitWire.setInfo("A small brain implant embedded in the cerebrum. This regulates and improves the brain's computing " +
"capabilities. <br><br> This augmentation increases the player's hacking skill by 10%");
BitWire.addToFactions(["CyberSec", "BitRunners", "NiteSec"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.BitWire)) {
BitWire.owned = Augmentations[AugmentationNames.BitWire].owned;
delete Augmentations[AugmentationNames.BitWire];
}
AddToAugmentations(BitWire);
2017-05-07 10:22:50 +02:00
var ArtificialBioNeuralNetwork = new Augmentation(AugmentationNames.ArtificialBioNeuralNetwork);
2017-05-12 07:14:42 +02:00
ArtificialBioNeuralNetwork.setRequirements(120000, 600000000);
ArtificialBioNeuralNetwork.setInfo("A network consisting of millions of nanoprocessors is embedded into the brain. " +
"The network is meant to mimick the way a biological brain solves a problem, which each " +
"nanoprocessor acting similar to the way a neuron would in a neural network. However, these " +
"nanoprocessors are programmed to perform computations much faster than organic neurons, " +
2017-05-05 17:50:55 +02:00
"allowing its user to solve much more complex problems at a much faster rate.<br><br>" +
"This augmentation:<br>" +
"Increases the player's hacking speed by 3%<br>" +
2017-05-05 17:50:55 +02:00
"Increases the amount of money the player's gains from hacking by 10%<br>" +
"Inreases the player's hacking skill by 15%");
2017-02-27 23:14:11 +01:00
ArtificialBioNeuralNetwork.addToFactions(["BitRunners", "Fulcrum Secret Technologies"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ArtificialBioNeuralNetwork)) {
ArtificialBioNeuralNetwork.owned = Augmentations[AugmentationNames.ArtificialBioNeuralNetwork].owned;
delete Augmentations[AugmentationNames.ArtificialBioNeuralNetwork];
}
AddToAugmentations(ArtificialBioNeuralNetwork);
2017-05-07 10:22:50 +02:00
var ArtificialSynapticPotentiation = new Augmentation(AugmentationNames.ArtificialSynapticPotentiation);
2017-05-12 07:14:42 +02:00
ArtificialSynapticPotentiation.setRequirements(2500, 15000000);
ArtificialSynapticPotentiation.setInfo("The body is injected with a chemical that artificially induces synaptic potentiation, " +
2017-05-05 17:50:55 +02:00
"otherwise known as the strengthening of synapses. This results in a enhanced cognitive abilities.<br><br>" +
"This augmentation increases the player's hacking speed and hacking chance by 3%.");
2017-02-27 23:14:11 +01:00
ArtificialSynapticPotentiation.addToFactions(["The Black Hand", "NiteSec"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ArtificialSynapticPotentiation)) {
ArtificialSynapticPotentiation.owned = Augmentations[AugmentationNames.ArtificialSynapticPotentiation].owned;
delete Augmentations[AugmentationNames.ArtificialSynapticPotentiation];
}
AddToAugmentations(ArtificialSynapticPotentiation);
2017-05-07 10:22:50 +02:00
var EnhancedMyelinSheathing = new Augmentation(AugmentationNames.EnhancedMyelinSheathing);
2017-05-12 07:14:42 +02:00
EnhancedMyelinSheathing.setRequirements(60000, 250000000);
EnhancedMyelinSheathing.setInfo("Electrical signals are used to induce a new, artificial form of myelinogensis in the human body. " +
"This process results in the proliferation of new, synthetic myelin sheaths in the nervous " +
"system. These myelin sheaths can propogate neuro-signals much faster than their organic " +
2017-05-05 17:50:55 +02:00
"counterparts, leading to greater processing speeds and better brain function.<br><br>" +
"This augmentation:<br>" +
"Increases the player's hacking speed by 2%<br>" +
2017-05-05 17:50:55 +02:00
"Increases the player's hacking skill by 5%<br>" +
"Increases the player's hacking experience gain rate by 10%");
2017-02-27 23:14:11 +01:00
EnhancedMyelinSheathing.addToFactions(["Fulcrum Secret Technologies", "BitRunners", "The Black Hand"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.EnhancedMyelinSheathing)) {
EnhancedMyelinSheathing.owned = Augmentations[AugmentationNames.EnhancedMyelinSheathing].owned;
delete Augmentations[AugmentationNames.EnhancedMyelinSheathing];
}
AddToAugmentations(EnhancedMyelinSheathing);
2017-05-07 10:22:50 +02:00
var SynapticEnhancement = new Augmentation(AugmentationNames.SynapticEnhancement);
2017-05-12 07:14:42 +02:00
SynapticEnhancement.setRequirements(900, 1200000);
SynapticEnhancement.setInfo("A small cranial implant that continuously uses weak electric signals to stimulate the brain and " +
"induce stronger synaptic activity. This improves the user's cognitive abilities.<br><br>" +
"This augmentation increases the player's hacking speed by 3%.");
2017-02-27 23:14:11 +01:00
SynapticEnhancement.addToFactions(["CyberSec"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.SynapticEnhancement)) {
SynapticEnhancement.owned = Augmentations[AugmentationNames.SynapticEnhancement].owned;
delete Augmentations[AugmentationNames.SynapticEnhancement];
}
AddToAugmentations(SynapticEnhancement);
2017-05-07 10:22:50 +02:00
var NeuralRetentionEnhancement = new Augmentation(AugmentationNames.NeuralRetentionEnhancement);
2017-05-12 07:14:42 +02:00
NeuralRetentionEnhancement.setRequirements(15000, 80000000);
NeuralRetentionEnhancement.setInfo("Chemical injections are used to permanently alter and strengthen the brain's neuronal " +
2017-05-05 17:50:55 +02:00
"circuits, strengthening its ability to retain information.<br><br>" +
2017-02-22 23:07:55 +01:00
"This augmentation increases the player's hacking experience gain rate by 40%.");
2017-02-27 23:14:11 +01:00
NeuralRetentionEnhancement.addToFactions(["CyberSec", "NiteSec"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.NeuralRetentionEnhancement)) {
NeuralRetentionEnhancement.owned = Augmentations[AugmentationNames.NeuralRetentionEnhancement].owned;
delete Augmentations[AugmentationNames.NeuralRetentionEnhancement];
}
AddToAugmentations(NeuralRetentionEnhancement);
2017-05-07 10:22:50 +02:00
var DataJack = new Augmentation(AugmentationNames.DataJack);
DataJack.setRequirements(45000, 75000000);
DataJack.setInfo("A brain implant that provides an interface for direct, wireless communication between a computer's main " +
"memory and the mind. This implant allows the user to not only access a computer's memory, but also alter " +
2017-05-05 17:50:55 +02:00
"and delete it.<br><br>" +
"This augmentation increases the amount of money the player gains from hacking by 25%");
2017-02-27 23:14:11 +01:00
DataJack.addToFactions(["BitRunners", "The Black Hand", "NiteSec", "Chongqing", "New Tokyo"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.DataJack)) {
DataJack.owned = Augmentations[AugmentationNames.DataJack].owned;
delete Augmentations[AugmentationNames.DataJack];
}
AddToAugmentations(DataJack);
2017-05-07 10:22:50 +02:00
var ENM = new Augmentation(AugmentationNames.ENM);
ENM.setRequirements(6000, 40000000);
ENM.setInfo("A thin device embedded inside the arm containing a wireless module capable of connecting " +
"to nearby networks. Once connected, the Netburner Module is capable of capturing and " +
"processing all of the traffic on that network. By itself, the Embedded Netburner Module does " +
"not do much, but a variety of very powerful upgrades can be installed that allow you to fully " +
2017-05-05 17:50:55 +02:00
"control the traffic on a network.<br><br>" +
"This augmentation increases the player's hacking skill by 10%");
2017-02-27 23:14:11 +01:00
ENM.addToFactions(["BitRunners", "The Black Hand", "NiteSec", "ECorp", "MegaCorp",
"Fulcrum Secret Technologies", "NWO", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ENM)) {
ENM.owned = Augmentations[AugmentationNames.ENM].owned;
delete Augmentations[AugmentationNames.ENM];
}
AddToAugmentations(ENM);
2017-05-07 10:22:50 +02:00
var ENMCore = new Augmentation(AugmentationNames.ENMCore);
ENMCore.setRequirements(100000, 400000000);
ENMCore.setInfo("The Core library is an implant that upgrades the firmware of the Embedded Netburner Module. " +
2017-05-05 17:50:55 +02:00
"This upgrade allows the Embedded Netburner Module to generate its own data on a network.<br><br>" +
"This augmentation:<br>" +
"Increases the player's hacking speed by 3%<br>" +
2017-05-05 17:50:55 +02:00
"Increases the amount of money the player gains from hacking by 10%<br>" +
"Increases the player's chance of successfully performing a hack by 3%<br>" +
2017-05-05 17:50:55 +02:00
"Increases the player's hacking experience gain rate by 10%<br>" +
"Increases the player's hacking skill by 10%");
2017-02-27 23:14:11 +01:00
ENMCore.addToFactions(["BitRunners", "The Black Hand", "NiteSec", "ECorp", "MegaCorp",
"Fulcrum Secret Technologies", "NWO", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ENMCore)) {
ENMCore.owned = Augmentations[AugmentationNames.ENMCore].owned;
delete Augmentations[AugmentationNames.ENMCore];
}
AddToAugmentations(ENMCore);
2017-05-07 10:22:50 +02:00
var ENMCoreV2 = new Augmentation(AugmentationNames.ENMCoreV2);
ENMCoreV2.setRequirements(400000, 800000000);
ENMCoreV2.setInfo("The Core V2 library is an implant that upgrades the firmware of the Embedded Netburner Module. " +
"This upgraded firmware allows the Embedded Netburner Module to control the information on " +
"a network by re-routing traffic, spoofing IP addresses, or altering the data inside network " +
2017-05-05 17:50:55 +02:00
"packets.<br><br>" +
"This augmentation: <br>" +
"Increases the player's hacking speed by 5%<br>" +
"Increases the amount of money the player gains from hacking by 50%<br>" +
"Increases the player's chance of successfully performing a hack by 5%<br>" +
"Increases the player's hacking experience gain rate by 50%<br>" +
"Increases the player's hacking skill by 15%");
2017-02-27 23:14:11 +01:00
ENMCoreV2.addToFactions(["ECorp", "MegaCorp", "Fulcrum Secret Technologies", "NWO",
"Blade Industries", "OmniTek Incorporated", "KuaiGong International"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ENMCoreV2)) {
ENMCoreV2.owned = Augmentations[AugmentationNames.ENMCoreV2].owned;
delete Augmentations[AugmentationNames.ENMCoreV2];
}
AddToAugmentations(ENMCoreV2);
2017-05-07 10:22:50 +02:00
var ENMCoreV3 = new Augmentation(AugmentationNames.ENMCoreV3);
ENMCoreV3.setRequirements(700000, 1200000000);
ENMCoreV3.setInfo("The Core V3 library is an implant that upgrades the firmware of the Embedded Netburner Module. " +
"This upgraded firmware allows the Embedded Netburner Module to seamlessly inject code into " +
2017-05-05 17:50:55 +02:00
"any device on a network.<br><br>" +
"This augmentation:<br>" +
"Increases the player's hacking speed by 5%<br>" +
"Increases the amount of money the player gains from hacking by 50%<br>" +
"Increases the player's chance of successfully performing a hack by 10%<br>" +
"Increases the player's hacking experience gain rate by 100%<br>" +
"Increases the player's hacking skill by 20%");
2017-02-27 23:14:11 +01:00
ENMCoreV3.addToFactions(["ECorp", "MegaCorp", "Fulcrum Secret Technologies", "NWO",
"Daedalus", "The Covenant", "Illuminati"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ENMCoreV3)) {
ENMCoreV3.owned = Augmentations[AugmentationNames.ENMCoreV3].owned;
delete Augmentations[AugmentationNames.ENMCoreV3];
}
AddToAugmentations(ENMCoreV3);
2017-05-07 10:22:50 +02:00
var ENMAnalyzeEngine = new Augmentation(AugmentationNames.ENMAnalyzeEngine);
2017-05-12 07:14:42 +02:00
ENMAnalyzeEngine.setRequirements(250000, 1000000000);
ENMAnalyzeEngine.setInfo("Installs the Analyze Engine for the Embedded Netburner Module, which is a CPU cluster " +
2017-05-05 17:50:55 +02:00
"that vastly outperforms the Netburner Module's native single-core processor.<br><br>" +
"This augmentation increases the player's hacking speed by 10%.");
2017-02-27 23:14:11 +01:00
ENMAnalyzeEngine.addToFactions(["ECorp", "MegaCorp", "Fulcrum Secret Technologies", "NWO",
"Daedalus", "The Covenant", "Illuminati"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ENMAnalyzeEngine)) {
ENMAnalyzeEngine.owned = Augmentations[AugmentationNames.ENMAnalyzeEngine].owned;
delete Augmentations[AugmentationNames.ENMAnalyzeEngine];
}
AddToAugmentations(ENMAnalyzeEngine);
2017-05-07 10:22:50 +02:00
var ENMDMA = new Augmentation(AugmentationNames.ENMDMA);
2017-05-12 07:14:42 +02:00
ENMDMA.setRequirements(400000, 1100000000);
ENMDMA.setInfo("This implant installs a Direct Memory Access (DMA) controller into the " +
"Embedded Netburner Module. This allows the Module to send and receive data " +
2017-05-05 17:50:55 +02:00
"directly to and from the main memory of devices on a network.<br><br>" +
"This augmentation: <br>" +
"Increases the amount of money the player gains from hacking by 50%<br>" +
"Increases the player's chance of successfully performing a hack by 20%");
2017-02-27 23:14:11 +01:00
ENMDMA.addToFactions(["ECorp", "MegaCorp", "Fulcrum Secret Technologies", "NWO",
"Daedalus", "The Covenant", "Illuminati"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.ENMDMA)) {
ENMDMA.owned = Augmentations[AugmentationNames.ENMDMA].owned;
delete Augmentations[AugmentationNames.ENMDMA];
}
AddToAugmentations(ENMDMA);
2017-05-07 10:22:50 +02:00
var Neuralstimulator = new Augmentation(AugmentationNames.Neuralstimulator);
2017-05-12 07:14:42 +02:00
Neuralstimulator.setRequirements(20000, 500000000);
Neuralstimulator.setInfo("A cranial implant that intelligently stimulates certain areas of the brain " +
2017-05-05 17:50:55 +02:00
"in order to improve cognitive functions<br><br>" +
"This augmentation:<br>" +
"Increases the player's hacking speed by 2%<br>" +
2017-05-05 17:50:55 +02:00
"Increases the player's chance of successfully performing a hack by 10%<br>" +
"Increases the player's hacking experience gain rate by 25%");
2017-02-27 23:14:11 +01:00
Neuralstimulator.addToFactions(["The Black Hand", "Chongqing", "Sector-12", "New Tokyo", "Aevum",
"Ishima", "Volhaven", "Bachman & Associates", "Clarke Incorporated",
2017-02-27 23:14:11 +01:00
"Four Sigma"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.Neuralstimulator)) {
Neuralstimulator.owned = Augmentations[AugmentationNames.Neuralstimulator].owned;
delete Augmentations[AugmentationNames.Neuralstimulator];
}
AddToAugmentations(Neuralstimulator);
//Work Augmentations
2017-05-07 10:22:50 +02:00
var NuoptimalInjectorImplant = new Augmentation(AugmentationNames.NuoptimalInjectorImplant);
NuoptimalInjectorImplant.setRequirements(2000, 2500000);
NuoptimalInjectorImplant.setInfo("This torso implant automatically injects nootropic supplements into " +
"the bloodstream to improve memory, increase focus, and provide other " +
2017-05-05 17:50:55 +02:00
"cognitive enhancements.<br><br>" +
"This augmentation increases the amount of reputation the player gains " +
"when working for a company by 20%.");
2017-02-27 23:14:11 +01:00
NuoptimalInjectorImplant.addToFactions(["Tian Di Hui", "Volhaven", "New Tokyo", "Chongqing", "Ishima",
"Clarke Incorporated", "Four Sigma", "Bachman & Associates"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.NuoptimalInjectorImplant)) {
NuoptimalInjectorImplant.owned = Augmentations[AugmentationNames.NuoptimalInjectorImplant].owned;
delete Augmentations[AugmentationNames.NuoptimalInjectorImplant];
}
AddToAugmentations(NuoptimalInjectorImplant);
2017-05-07 10:22:50 +02:00
var SpeechEnhancement = new Augmentation(AugmentationNames.SpeechEnhancement);
SpeechEnhancement.setRequirements(1000, 1750000);
SpeechEnhancement.setInfo("An advanced neural implant that improves your speaking abilities, making " +
"you more convincing and likable in conversations and overall improving your " +
2017-05-05 17:50:55 +02:00
"social interactions.<br><br>" +
"This augmentation:<br>" +
"Increases the player's charisma by 10%<br>" +
"Increases the amount of reputation the player gains when working for a company by 10%");
2017-02-27 23:14:11 +01:00
SpeechEnhancement.addToFactions(["Tian Di Hui", "Speakers for the Dead", "Four Sigma", "KuaiGong International",
"Clarke Incorporated", "Four Sigma", "Bachman & Associates"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.SpeechEnhancement)) {
SpeechEnhancement.owned = Augmentations[AugmentationNames.SpeechEnhancement].owned;
delete Augmentations[AugmentationNames.SpeechEnhancement];
}
AddToAugmentations(SpeechEnhancement);
2017-05-07 10:22:50 +02:00
var FocusWire = new Augmentation(AugmentationNames.FocusWire); //Stops procrastination
FocusWire.setRequirements(30000, 150000000);
FocusWire.setInfo("A cranial implant that stops procrastination by blocking specific neural pathways " +
2017-05-05 17:50:55 +02:00
"in the brain.<br><br>" +
"This augmentation: <br>" +
"Increases all experience gains by 10%<br>" +
"Increases the amount of money the player gains from working by 10%<br>" +
"Increases the amount of reputation the player gains when working for a company by 10%");
2017-02-27 23:14:11 +01:00
FocusWire.addToFactions(["Bachman & Associates", "Clarke Incorporated", "Four Sigma", "KuaiGong International"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.FocusWire)) {
FocusWire.owned = Augmentations[AugmentationNames.FocusWire].owned;
delete Augmentations[AugmentationNames.FocusWire];
}
AddToAugmentations(FocusWire)
2017-05-07 10:22:50 +02:00
var PCDNI = new Augmentation(AugmentationNames.PCDNI);
2017-05-12 07:14:42 +02:00
PCDNI.setRequirements(150000, 650000000);
PCDNI.setInfo("Installs a Direct-Neural Interface jack into your arm that is compatible with most " +
"computers. Connecting to a computer through this jack allows you to interface with " +
2017-05-05 17:50:55 +02:00
"it using the brain's electrochemical signals.<br><br>" +
"This augmentation:<br>" +
"Increases the amount of reputation the player gains when working for a company by 25%<br>" +
"Increases the player's hacking skill by 10%");
2017-02-27 23:14:11 +01:00
PCDNI.addToFactions(["Four Sigma", "OmniTek Incorporated", "ECorp", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.PCDNI)) {
PCDNI.owned = Augmentations[AugmentationNames.PCDNI].owned;
delete Augmentations[AugmentationNames.PCDNI];
}
AddToAugmentations(PCDNI);
2017-05-07 10:22:50 +02:00
var PCDNIOptimizer = new Augmentation(AugmentationNames.PCDNIOptimizer);
2017-05-12 07:14:42 +02:00
PCDNIOptimizer.setRequirements(200000, 875000000);
PCDNIOptimizer.setInfo("This is a submodule upgrade to the PC Direct-Neural Interface augmentation. It " +
"improves the performance of the interface and gives the user more control options " +
2017-05-05 17:50:55 +02:00
"to the connected computer.<br><br>" +
"This augmentation:<br>" +
"Increases the amount of reputation the player gains when working for a company by 25%<br>" +
"Increases the player's hacking skill by 25%");
2017-02-27 23:14:11 +01:00
PCDNIOptimizer.addToFactions(["Fulcrum Secret Technologies", "ECorp", "Blade Industries"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.PCDNIOptimizer)) {
PCDNIOptimizer.owned = Augmentations[AugmentationNames.PCDNIOptimizer].owned;
delete Augmentations[AugmentationNames.PCDNIOptimizer];
}
AddToAugmentations(PCDNIOptimizer);
2017-05-07 10:22:50 +02:00
var PCDNINeuralNetwork = new Augmentation(AugmentationNames.PCDNINeuralNetwork);
2017-05-03 21:25:24 +02:00
PCDNINeuralNetwork.setRequirements(600000, 1100000000);
PCDNINeuralNetwork.setInfo("This is an additional installation that upgrades the functionality of the " +
"PC Direct-Neural Interface augmentation. When connected to a computer, " +
"The NeuroNet Injector upgrade allows the user to use his/her own brain's " +
2017-05-05 17:50:55 +02:00
"processing power to aid the computer in computational tasks.<br><br>" +
"This augmentation:<br>" +
"Increases the amount of reputation the player gains when working for a company by 50%<br>" +
2017-05-05 17:50:55 +02:00
"Increases the player's hacking skill by 10%<br>" +
"Increases the player's hacking speed by 5%");
2017-02-27 23:14:11 +01:00
PCDNINeuralNetwork.addToFactions(["Fulcrum Secret Technologies"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.PCDNINeuralNetwork)) {
PCDNINeuralNetwork.owned = Augmentations[AugmentationNames.PCDNINeuralNetwork].owned;
delete Augmentations[AugmentationNames.PCDNINeuralNetwork];
}
2017-02-09 19:35:28 +01:00
AddToAugmentations(PCDNINeuralNetwork);
2017-05-07 10:22:50 +02:00
var ADRPheromone1 = new Augmentation(AugmentationNames.ADRPheromone1);
ADRPheromone1.setRequirements(1250, 2000000);
2017-05-07 10:22:50 +02:00
ADRPheromone1.setInfo("The body is genetically re-engineered so that it produces the ADR-V1 pheromone, " +
"an artificial pheromone discovered by scientists. The ADR-V1 pheromone, when excreted, " +
2017-05-07 10:22:50 +02:00
"triggers feelings of admiration and approval in other people. <br><br>" +
"This augmentation: <br>" +
"Increases the amount of reputation the player gains when working for a company by 10% <br>" +
"Increases the amount of reputation the player gains for a faction by 10%");
ADRPheromone1.addToFactions(["Tian Di Hui", "The Syndicate", "NWO", "MegaCorp", "Four Sigma"]);
if (augmentationExists(AugmentationNames.ADRPheromone1)) {
ADRPheromone1.owned = Augmentations[AugmentationNames.ADRPheromone1].owned;
delete Augmentations[AugmentationNames.ADRPheromone1];
}
AddToAugmentations(ADRPheromone1);
//HacknetNode Augmentations
2017-05-07 10:22:50 +02:00
var HacknetNodeCPUUpload = new Augmentation(AugmentationNames.HacknetNodeCPUUpload);
HacknetNodeCPUUpload.setRequirements(1500, 2000000);
HacknetNodeCPUUpload.setInfo("Uploads the architecture and design details of a Hacknet Node's CPU into " +
"the brain. This allows the user to engineer custom hardware and software " +
2017-05-05 17:50:55 +02:00
"for the Hacknet Node that provides better performance.<br><br>" +
"This augmentation:<br>" +
"Increases the amount of money produced by Hacknet Nodes by 20%<br>" +
"Decreases the cost of purchasing a Hacknet Node Core by 15%");
2017-05-03 19:58:09 +02:00
HacknetNodeCPUUpload.addToFactions(["Netburners"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.HacknetNodeCPUUpload)) {
HacknetNodeCPUUpload.owned = Augmentations[AugmentationNames.HacknetNodeCPUUpload].owned;
delete Augmentations[AugmentationNames.HacknetNodeCPUUpload];
}
AddToAugmentations(HacknetNodeCPUUpload);
2017-05-07 10:22:50 +02:00
var HacknetNodeCacheUpload = new Augmentation(AugmentationNames.HacknetNodeCacheUpload);
HacknetNodeCacheUpload.setRequirements(1000, 1000000);
HacknetNodeCacheUpload.setInfo("Uploads the architecture and design details of a Hacknet Node's main-memory cache " +
"into the brain. This allows the user to engineer custom cache hardware for the " +
2017-05-05 17:50:55 +02:00
"Hacknet Node that offers better performance.<br><br>" +
"This augmentation:<br> " +
"Increases the amount of money produced by Hacknet Nodes by 15%<br>" +
"Decreases the cost of leveling up a Hacknet Node by 15%");
2017-05-03 19:58:09 +02:00
HacknetNodeCacheUpload.addToFactions(["Netburners"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.HacknetNodeCacheUpload)) {
HacknetNodeCacheUpload.owned = Augmentations[AugmentationNames.HacknetNodeCacheUpload].owned;
delete Augmentations[AugmentationNames.HacknetNodeCacheUpload];
}
AddToAugmentations(HacknetNodeCacheUpload);
2017-05-07 10:22:50 +02:00
var HacknetNodeNICUpload = new Augmentation(AugmentationNames.HacknetNodeNICUpload);
HacknetNodeNICUpload.setRequirements(750, 750000);
HacknetNodeNICUpload.setInfo("Uploads the architecture and design details of a Hacknet Node's Network Interface Card (NIC) " +
"into the brain. This allows the user to engineer a custom NIC for the Hacknet Node that " +
2017-05-05 17:50:55 +02:00
"offers better performance.<br><br>" +
"This augmentation:<br>" +
"Increases the amount of money produced by Hacknet Nodes by 10%<br>" +
"Decreases the cost of purchasing a Hacknet Node by 10%");
2017-05-03 19:58:09 +02:00
HacknetNodeNICUpload.addToFactions(["Netburners"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.HacknetNodeNICUpload)) {
HacknetNodeNICUpload.owned = Augmentations[AugmentationNames.HacknetNodeNICUpload].owned;
delete Augmentations[AugmentationNames.HacknetNodeNICUpload];
}
AddToAugmentations(HacknetNodeNICUpload);
2017-05-07 10:22:50 +02:00
var HacknetNodeKernelDNI = new Augmentation(AugmentationNames.HacknetNodeKernelDNI);
HacknetNodeKernelDNI.setRequirements(4000, 12000000);
HacknetNodeKernelDNI.setInfo("Installs a Direct-Neural Interface jack into the arm that is capable of connecting to a " +
"Hacknet Node. This lets the user access and manipulate the Node's kernel using the mind's " +
2017-05-05 17:50:55 +02:00
"electrochemical signals.<br><br>" +
"This augmentation increases the amount of money produced by Hacknet Nodes by 50%.");
2017-05-03 19:58:09 +02:00
HacknetNodeKernelDNI.addToFactions(["Netburners"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.HacknetNodeKernelDNI)) {
HacknetNodeKernelDNI.owned = Augmentations[AugmentationNames.HacknetNodeKernelDNI].owned;
delete Augmentations[AugmentationNames.HacknetNodeKernelDNI];
}
AddToAugmentations(HacknetNodeKernelDNI);
2017-05-07 10:22:50 +02:00
var HacknetNodeCoreDNI = new Augmentation(AugmentationNames.HacknetNodeCoreDNI);
2017-05-12 07:14:42 +02:00
HacknetNodeCoreDNI.setRequirements(6000, 20000000);
HacknetNodeCoreDNI.setInfo("Installs a Direct-Neural Interface jack into the arm that is capable of connecting " +
"to a Hacknet Node. This lets the user access and manipulate the Node's processing logic using " +
2017-05-05 17:50:55 +02:00
"the mind's electrochemical signals.<br><br>" +
"This augmentation increases the amount of money produced by Hacknet Nodes by 75%.");
2017-05-03 19:58:09 +02:00
HacknetNodeCoreDNI.addToFactions(["Netburners"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.HacknetNodeCoreDNI)) {
HacknetNodeCoreDNI.owned = Augmentations[AugmentationNames.HacknetNodeCoreDNI].owned;
delete Augmentations[AugmentationNames.HacknetNodeCoreDNI];
}
AddToAugmentations(HacknetNodeCoreDNI);
//Misc/Hybrid augmentations
var NeuroFluxGovernor = new Augmentation(AugmentationNames.NeuroFluxGovernor);
if (augmentationExists(AugmentationNames.NeuroFluxGovernor)) {
var oldAug = Augmentations[AugmentationNames.NeuroFluxGovernor];
NeuroFluxGovernor.owned = oldAug.owned;
NeuroFluxGovernor.level = oldAug.level;
mult = Math.pow(CONSTANTS.NeuroFluxGovernorLevelMult, NeuroFluxGovernor.level);
NeuroFluxGovernor.setRequirements(250 * mult, 500000 * mult);
delete Augmentations[AugmentationNames.NeuroFluxGovernor];
} else {
NeuroFluxGovernor.setRequirements(250, 500000);
}
NeuroFluxGovernor.setInfo("A device that is embedded in the back of the neck. The NeuroFlux Governor " +
"monitors and regulates nervous impulses coming to and from the spinal column, " +
"essentially 'governing' the body. By doing so, it improves the functionality of the " +
"body's nervous system. <br><br> " +
"This is a special augmentation because it can be leveled up infinitely. Each level of this augmentation " +
"increases all of the player's stats and experience gains by 1%.")
NeuroFluxGovernor.addToAllFactions();
AddToAugmentations(NeuroFluxGovernor);
2017-05-07 10:22:50 +02:00
var Neurotrainer1 = new Augmentation(AugmentationNames.Neurotrainer1);
Neurotrainer1.setRequirements(400, 600000);
Neurotrainer1.setInfo("A decentralized cranial implant that improves the brain's ability to learn. It is " +
"installed by releasing millions of nanobots into the human brain, each of which " +
"attaches to a different neural pathway to enhance the brain's ability to retain " +
2017-05-05 17:50:55 +02:00
"and retrieve information.<br><br>" +
"This augmentation increases the player's experience gain rate for all stats by 10%");
2017-02-27 23:14:11 +01:00
Neurotrainer1.addToFactions(["CyberSec"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.Neurotrainer1)) {
Neurotrainer1.owned = Augmentations[AugmentationNames.Neurotrainer1].owned;
delete Augmentations[AugmentationNames.Neurotrainer1];
}
AddToAugmentations(Neurotrainer1);
2017-05-07 10:22:50 +02:00
var Neurotrainer2 = new Augmentation(AugmentationNames.Neurotrainer2);
Neurotrainer2.setRequirements(4000, 5000000);
Neurotrainer2.setInfo("A decentralized cranial implant that improves the brain's ability to learn. This " +
"is a more powerful version of the Neurotrainer I augmentation, but it does not " +
2017-05-05 17:50:55 +02:00
"require Neurotrainer I to be installed as a prerequisite.<br><br>" +
"This augmentation increases the player's experience gain rate for all stats by 20%");
2017-02-27 23:14:11 +01:00
Neurotrainer2.addToFactions(["BitRunners", "NiteSec"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.Neurotrainer2)) {
Neurotrainer2.owned = Augmentations[AugmentationNames.Neurotrainer2].owned;
delete Augmentations[AugmentationNames.Neurotrainer2];
}
AddToAugmentations(Neurotrainer2);
2017-05-07 10:22:50 +02:00
var Neurotrainer3 = new Augmentation(AugmentationNames.Neurotrainer3);
Neurotrainer3.setRequirements(10000, 21000000);
Neurotrainer3.setInfo("A decentralized cranial implant that improves the brain's ability to learn. This " +
"is a more powerful version of the Neurotrainer I and Neurotrainer II augmentation, " +
2017-05-05 17:50:55 +02:00
"but it does not require either of them to be installed as a prerequisite.<br><br>" +
"This augmentation increases the player's experience gain rate for all stats by 30%");
2017-02-27 23:14:11 +01:00
Neurotrainer3.addToFactions(["NWO", "Four Sigma"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.Neurotrainer3)) {
Neurotrainer3.owned = Augmentations[AugmentationNames.Neurotrainer3].owned;
delete Augmentations[AugmentationNames.Neurotrainer3];
}
AddToAugmentations(Neurotrainer3);
2017-05-07 10:22:50 +02:00
var Hypersight = new Augmentation(AugmentationNames.Hypersight);
Hypersight.setInfo("A bionic eye implant that grants sight capabilities far beyond those of a natural human. " +
"Embedded circuitry within the implant provides the ability to detect heat and movement " +
2017-05-05 17:50:55 +02:00
"through solid objects such as wells, thus providing 'x-ray vision'-like capabilities.<br><br>" +
"This augmentation: <br>" +
"Increases the player's dexterity by 50%<br>" +
"Increases the player's hacking speed by 3%<br>" +
"Increases the amount of money the player gains from hacking by 10%");
2017-05-12 07:14:42 +02:00
Hypersight.setRequirements(60000, 450000000);
2017-02-27 23:14:11 +01:00
Hypersight.addToFactions(["Blade Industries", "KuaiGong International"]);
2017-05-07 10:22:50 +02:00
if (augmentationExists(AugmentationNames.Hypersight)) {
Hypersight.owned = Augmentations[AugmentationNames.Hypersight].owned;
delete Augmentations[AugmentationNames.Hypersight];
}
AddToAugmentations(Hypersight);
var LuminCloaking1 = new Augmentation(AugmentationNames.LuminCloaking1);
LuminCloaking1.setInfo("A skin implant that reinforces the skin with highly-advanced synthetic cells. These " +
"cells, when powered, have a negative refractive index. As a result, they bend light " +
"around the skin, making the user much harder to see from the naked eye. <br><br>" +
"This augmentation: <br>" +
"Increases the player's agility by 5% <br>" +
"Increases the amount of money the player gains from crimes by 10%");
LuminCloaking1.setRequirements(600, 750000);
LuminCloaking1.addToFactions(["Slum Snakes", "Tetrads"]);
if (augmentationExists(AugmentationNames.LuminCloaking1)) {
LuminCloaking1.owned = Augmentations[AugmentationNames.LuminCloaking1].owned;
delete Augmentations[AugmentationNames.LuminCloaking1];
}
AddToAugmentations(LuminCloaking1);
var LuminCloaking2 = new Augmentation(AugmentationNames.LuminCloaking2);
LuminCloaking2.setInfo("This is a more advanced version of the LuminCloaking-V2 augmentation. This skin implant " +
"reinforces the skin with highly-advanced synthetic cells. These " +
"cells, when powered, are capable of not only bending light but also of bending heat, " +
"making the user more resilient as well as stealthy. <br><br>" +
"This augmentation: <br>" +
"Increases the player's agility by 10% <br>" +
"Increases the player's defense by 10% <br>" +
"Increases the amount of money the player gains from crimes by 25%");
LuminCloaking2.setRequirements(2000, 4000000);
LuminCloaking2.addToFactions(["Slum Snakes", "Tetrads"]);
if (augmentationExists(AugmentationNames.LuminCloaking2)) {
LuminCloaking2.owned = Augmentations[AugmentationNames.LuminCloaking2].owned;
delete Augmentations[AugmentationNames.LuminCloaking2];
}
AddToAugmentations(LuminCloaking2);
var SmartSonar = new Augmentation(AugmentationNames.SmartSonar);
SmartSonar.setInfo("A cochlear implant that helps the player detect and locate enemies " +
"using sound propagation. <br><br>" +
"This augmentation: <br>" +
"Increases the player's dexterity by 10%<br>" +
"Increases the player's dexterity experience gain rate by 15%<br>" +
"Increases the amount of money the player gains from crimes by 25%");
SmartSonar.setRequirements(10000, 12000000);
SmartSonar.addToFactions(["Slum Snakes"]);
if (augmentationExists(AugmentationNames.SmartSonar)) {
SmartSonar.owned = Augmentations[AugmentationNames.SmartSonar].owned;
delete Augmentations[AugmentationNames.SmartSonar];
}
AddToAugmentations(SmartSonar);
2017-05-12 21:21:31 +02:00
var PowerRecirculator = new Augmentation(AugmentationNames.PowerRecirculator);
PowerRecirculator.setInfo("The body's nerves are attached with polypyrrole nanocircuits that " +
"are capable of of capture wasted energy (in the form of heat) " +
"and converting it back into usable power. <br><br>" +
"This augmentation: <br>" +
"Increases all of the player's stats by 10%<br>" +
"Increases the player's experience gain rate for all stats by 10%");
PowerRecirculator.setRequirements(20000, 50000000);
2017-05-12 21:21:31 +02:00
PowerRecirculator.addToFactions(["Tetrads", "The Dark Army", "The Syndicate", "NWO"]);
if (augmentationExists(AugmentationNames.PowerRecirculator)) {
PowerRecirculator.owned = Augmentations[AugmentationNames.PowerRecirculator].owned;
delete Augmentations[AugmentationNames.PowerRecirculator];
}
AddToAugmentations(PowerRecirculator);
2016-12-22 16:56:15 +01:00
}
applyAugmentation = function(aug, faction) {
if (aug.name != AugmentationNames.NeuroFluxGovernor && aug.owned) {
throw new Error("This Augmentation is already owned/applied...somethings wrong");
return;
}
switch(aug.name) {
//Combat stat augmentations
2017-05-07 10:22:50 +02:00
case AugmentationNames.Targeting1:
Player.dexterity_mult *= 1.2;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.Targeting2:
Player.dexterity_mult *= 1.3;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.Targeting3:
2017-02-20 23:06:16 +01:00
Player.dexterity_mult *= 1.5;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.SyntheticHeart: //High level
2017-02-20 23:06:16 +01:00
Player.agility_mult *= 2.0;
Player.strength_mult *= 2.0;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.SynfibrilMuscle: //Medium-high level
2017-02-20 23:06:16 +01:00
Player.strength_mult *= 1.5;
Player.defense_mult *= 1.5;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.CombatRib1:
//Str and Defense 5%
Player.strength_mult *= 1.15;
Player.defense_mult *= 1.15;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.CombatRib2:
Player.strength_mult *= 1.25;
Player.defense_mult *= 1.25;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.CombatRib3:
Player.strength_mult *= 1.35;
Player.defense_mult *= 1.35;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.NanofiberWeave: //Med level
2017-02-20 23:06:16 +01:00
Player.strength_mult *= 1.3;
Player.defense_mult *= 1.3;
break;
case AugmentationNames.SubdermalArmor: //High level
2017-02-20 23:06:16 +01:00
Player.defense_mult *= 2.5;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.WiredReflexes: //Low level
Player.agility_mult *= 1.1;
Player.dexterity_mult *= 1.1;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.GrapheneBoneLacings: //High level
2017-02-20 23:06:16 +01:00
Player.strength_mult *= 2;
Player.defense_mult *= 2;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.BionicSpine: //Med level
2017-02-20 23:06:16 +01:00
Player.strength_mult *= 1.2;
Player.defense_mult *= 1.2;
Player.agility_mult *= 1.2;
Player.dexterity_mult *= 1.2;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.GrapheneBionicSpine: //High level
2017-02-20 23:06:16 +01:00
Player.strength_mult *= 2;
Player.defense_mult *= 2;
Player.agility_mult *= 2;
Player.dexterity_mult *= 2;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.BionicLegs: //Med level
Player.agility_mult *= 1.75;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.GrapheneBionicLegs: //High level
2017-02-20 23:06:16 +01:00
player.agility_mult *= 3.0;
break;
//Labor stats augmentations
2017-05-07 10:22:50 +02:00
case AugmentationNames.EnhancedSocialInteractionImplant: //Med-high level
Player.charisma_mult *= 1.5;
Player.charisma_exp_mult *= 1.5;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.TITN41Injection:
Player.charisma_mult *= 1.15;
Player.charisma_exp_mult *= 1.15;
break;
case AugmentationNames.SpeechProcessor: //Med level
2017-02-20 23:06:16 +01:00
Player.charisma_mult *= 1.2;
break;
2016-12-22 16:56:15 +01:00
//Hacking augmentations
2017-05-07 10:22:50 +02:00
case AugmentationNames.BitWire:
Player.hacking_mult *= 1.1;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ArtificialBioNeuralNetwork: //Med level
Player.hacking_speed_mult *= .97;
2017-02-20 23:06:16 +01:00
Player.hacking_money_mult *= 1.1;
Player.hacking_mult *= 1.15;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ArtificialSynapticPotentiation: //Med level
Player.hacking_speed_mult *= .97;
Player.hacking_chance_mult *= 1.03;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.EnhancedMyelinSheathing: //Med level
Player.hacking_speed_mult *= .98;
Player.hacking_exp_mult *= 1.1;
2017-02-20 23:06:16 +01:00
Player.hacking_mult *= 1.05;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.SynapticEnhancement: //Low Level
Player.hacking_speed_mult *= .97;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.NeuralRetentionEnhancement: //Med level
2017-02-20 23:06:16 +01:00
Player.hacking_exp_mult *= 1.4;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.DataJack: //Med low level
Player.hacking_money_mult *= 1.25;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ENM: //Medium level
Player.hacking_mult *= 1.1;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ENMCore: //Medium level
Player.hacking_speed_mult *= .97;
2017-02-20 23:06:16 +01:00
Player.hacking_money_mult *= 1.1;
Player.hacking_chance_mult *= 1.03;
2017-02-20 23:06:16 +01:00
Player.hacking_exp_mult *= 1.1;
Player.hacking_mult *= 1.1;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ENMCoreV2: //Medium high level
2017-02-20 23:06:16 +01:00
Player.hacking_speed_mult *= .95;
Player.hacking_money_mult *= 1.5;
Player.hacking_chance_mult *= 1.05;
Player.hacking_exp_mult *= 1.5;
Player.hacking_mult *= 1.15;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ENMCoreV3: //High level
2017-02-20 23:06:16 +01:00
Player.hacking_speed_mult *= .95;
Player.hacking_money_mult *= 1.5;
Player.hacking_chance_mult *= 1.1;
Player.hacking_exp_mult *= 2.0;
Player.hacking_mult *= 1.2;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ENMAnalyzeEngine: //High level
2017-02-20 23:06:16 +01:00
Player.hacking_speed_mult *= 0.9;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ENMDMA: //High level
2017-02-20 23:06:16 +01:00
Player.hacking_money_mult *= 1.5;
Player.hacking_chance_mult *= 1.2;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.Neuralstimulator: //Medium Level
Player.hacking_speed_mult *= .98;
2017-02-20 23:06:16 +01:00
Player.hacking_chance_mult *= 1.1;
Player.hacking_exp_mult *= 1.25;
break;
2017-02-20 23:06:16 +01:00
//Work augmentations
2017-05-07 10:22:50 +02:00
case AugmentationNames.NuoptimalInjectorImplant: //Low medium level
Player.company_rep_mult *= 1.2;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.SpeechEnhancement: //Low level
Player.company_rep_mult *= 1.1;
Player.charisma_mult *= 1.1;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.FocusWire: //Med level
2017-02-20 23:06:16 +01:00
Player.hacking_exp_mult *= 1.1;
Player.strength_exp_mult *= 1.1;
Player.defense_exp_mult *= 1.1;
Player.dexterity_exp_mult *= 1.1;
Player.agility_exp_mult *= 1.1;
Player.charisma_exp_mult *= 1.1;
Player.company_rep_mult *= 1.1;
Player.work_money_mult *= 1.1;
2017-02-20 23:06:16 +01:00
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.PCDNI: //Med level
Player.company_rep_mult *= 1.25;
2017-02-20 23:06:16 +01:00
Player.hacking_mult *= 1.1;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.PCDNIOptimizer: //High level
//Allows u to better optimize code/pc when connecting with PC DNI..helps with software/IT jobs
Player.company_rep_mult *= 1.25;
Player.hacking_mult *= 1.25;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.PCDNINeuralNetwork: //High level
Player.company_rep_mult *= 1.5;
2017-02-20 23:06:16 +01:00
Player.hacking_mult *= 1.1;
Player.hacking_speed_mult *= .95;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.ADRPheromone1:
Player.company_rep_mult *= 1.1;
Player.faction_rep_mult *= 1.1;
break;
//Hacknet Node Augmentations
2017-05-07 10:22:50 +02:00
case AugmentationNames.HacknetNodeCPUUpload:
Player.hacknet_node_money_mult *= 1.2;
Player.hacknet_node_purchase_cost_mult *= 0.85;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.HacknetNodeCacheUpload:
Player.hacknet_node_money_mult *= 1.15;
Player.hacknet_node_level_cost_mult *= 0.85;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.HacknetNodeNICUpload:
Player.hacknet_node_money_mult *= 1.1;
Player.hacknet_node_purchase_cost_mult *= 0.9;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.HacknetNodeKernelDNI:
Player.hacknet_node_money_mult *= 1.50;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.HacknetNodeCoreDNI:
Player.hacknet_node_money_mult *= 1.75;
break;
//Misc augmentations
case AugmentationNames.NeuroFluxGovernor:
Player.hacking_mult *= 1.01;
Player.strength_mult *= 1.01;
Player.defense_mult *= 1.01;
Player.dexterity_mult *= 1.01;
Player.agility_mult *= 1.01;
Player.charisma_mult *= 1.01;
Player.hacking_exp_mult *= 1.01;
Player.strength_exp_mult *= 1.01;
Player.defense_exp_mult *= 1.01;
Player.dexterity_exp_mult *= 1.01;
Player.agility_exp_mult *= 1.01;
Player.charisma_exp_mult *= 1.01;
++aug.level;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.Neurotrainer1: //Low Level
2017-02-20 23:06:16 +01:00
Player.hacking_exp_mult *= 1.1;
Player.strength_exp_mult *= 1.1;
Player.defense_exp_mult *= 1.1;
Player.dexterity_exp_mult *= 1.1;
Player.agility_exp_mult *= 1.1;
Player.charisma_exp_mult *= 1.1;
break;
case AugmentationNames.Neurotrainer2: //Medium level
2017-02-20 23:06:16 +01:00
Player.hacking_exp_mult *= 1.2;
Player.strength_exp_mult *= 1.2;
Player.defense_exp_mult *= 1.2;
Player.dexterity_exp_mult *= 1.2;
Player.agility_exp_mult *= 1.2;
Player.charisma_exp_mult *= 1.2;
break;
case AugmentationNames.Neurotrainer3: //High Level
Player.hacking_exp_mult *= 1.3;
Player.strength_exp_mult *= 1.3;
Player.defense_exp_mult *= 1.3;
Player.dexterity_exp_mult *= 1.3;
Player.agility_exp_mult *= 1.3;
Player.charisma_exp_mult *= 1.3;
break;
2017-05-07 10:22:50 +02:00
case AugmentationNames.Hypersight: //Medium high level
2017-02-20 23:06:16 +01:00
Player.dexterity_mult *= 1.5;
Player.hacking_speed_mult *= .97;
2017-02-20 23:06:16 +01:00
Player.hacking_money_mult *= 1.1;
break;
case AugmentationNames.LuminCloaking1:
Player.agility_mult *= 1.05;
Player.crime_money_mult *= 1.1;
break;
case AugmentationNames.LuminCloaking2:
Player.agility_mult *= 1.1;
Player.defense_mult *= 1.1;
Player.crime_money_mult *= 1.25;
break;
case AugmentationNames.HemoRecirculator:
Player.strength_mult *= 1.15;
Player.defense_mult *= 1.15;
Player.agility_mult *= 1.15;
Player.dexterity_mult *= 1.15;
break;
case AugmentationNames.SmartSonar:
Player.dexterity_mult *= 1.1;
Player.dexterity_exp_mult *= 1.15;
Player.crime_money_mult *= 1.25;
break;
case AugmentationNames.PowerRecirculator:
Player.hacking_mult *= 1.1;
Player.strength_mult *= 1.1;
Player.defense_mult *= 1.1;
Player.dexterity_mult *= 1.1;
Player.agility_mult *= 1.1;
Player.charisma_mult *= 1.1;
Player.hacking_exp_mult *= 1.1;
Player.strength_exp_mult *= 1.1;
Player.defense_exp_mult *= 1.1;
Player.dexterity_exp_mult *= 1.1;
Player.agility_exp_mult *= 1.1;
Player.charisma_exp_mult *= 1.1;
break;
default:
2017-05-07 10:22:50 +02:00
throw new Error("ERROR: No such augmentation!");
return;
}
aug.owned = true;
aug.factionInstalledBy = faction.name;
2017-02-20 23:06:16 +01:00
Player.augmentations.push(aug.name);
++Player.numAugmentations;
2017-05-07 10:22:50 +02:00
}
function augmentationExists(name) {
return Augmentations.hasOwnProperty(name);
2016-12-22 16:56:15 +01:00
}