2016-12-22 16:56:15 +01:00
|
|
|
//Augmentations
|
|
|
|
function Augmentation(name) {
|
2017-02-17 23:19:25 +01:00
|
|
|
this.name = name;
|
2017-02-08 23:50:22 +01:00
|
|
|
this.info = "";
|
2017-02-17 23:19:25 +01:00
|
|
|
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;
|
2016-12-22 16:56:15 +01:00
|
|
|
}
|
|
|
|
|
2017-02-27 23:14:11 +01:00
|
|
|
Augmentation.prototype.setInfo = function(inf) {
|
2017-02-17 23:19:25 +01:00
|
|
|
this.info = inf;
|
|
|
|
}
|
|
|
|
|
2017-02-27 23:14:11 +01:00
|
|
|
Augmentation.prototype.setRequirements = function(rep, cost) {
|
2017-02-17 23:19:25 +01:00
|
|
|
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) {
|
2017-02-17 23:19:25 +01:00
|
|
|
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;
|
2017-02-17 23:19:25 +01:00
|
|
|
}
|
|
|
|
faction.augmentations.push(this.name);
|
|
|
|
}
|
2017-02-09 19:35:28 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 16:56:15 +01:00
|
|
|
Augmentation.prototype.toJSON = function() {
|
2017-02-17 23:19:25 +01:00
|
|
|
return Generic_toJSON("Augmentation", this);
|
2016-12-22 16:56:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Augmentation.fromJSON = function(value) {
|
2017-02-17 23:19:25 +01:00
|
|
|
return Generic_fromJSON(Augmentation, value.data);
|
2016-12-22 16:56:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Reviver.constructors.Augmentation = Augmentation;
|
|
|
|
|
|
|
|
Augmentations = {}
|
|
|
|
|
|
|
|
AddToAugmentations = function(aug) {
|
2017-02-17 23:19:25 +01:00
|
|
|
var name = aug.name;
|
|
|
|
Augmentations[name] = aug;
|
2016-12-22 16:56:15 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 17:19:02 +01:00
|
|
|
//TODO Something that decreases RAM usage of scripts
|
2016-12-22 16:56:15 +01:00
|
|
|
initAugmentations = function() {
|
2017-02-17 23:19:25 +01:00
|
|
|
//Combat stat augmentations
|
|
|
|
var Targeting1 = new Augmentation("Augmented Targeting I");
|
2017-05-03 21:25:24 +02:00
|
|
|
Targeting1.setRequirements(8000, 10000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-21 23:11:59 +01:00
|
|
|
"This augmentation increases the player's dexterity by 10%.");
|
2017-02-27 23:14:11 +01:00
|
|
|
Targeting1.addToFactions(["The Dark Army", "The Syndicate", "Sector-12", "Volhaven", "Ishima",
|
|
|
|
"OmniTek Incorporated", "KuaiGong International", "Blade Industries"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(Targeting1);
|
|
|
|
|
|
|
|
var Targeting2 = new Augmentation("Augmented Targeting II");
|
2017-05-03 20:18:09 +02:00
|
|
|
Targeting2.setRequirements(30000, 20000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 " +
|
2017-02-21 23:11:59 +01:00
|
|
|
"by an additional 20%.");
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(Targeting2);
|
|
|
|
|
|
|
|
var Targeting3 = new Augmentation("Augmented Targeting III");
|
2017-05-03 20:18:09 +02:00
|
|
|
Targeting3.setRequirements(80000, 50000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 " +
|
2017-02-21 23:11:59 +01:00
|
|
|
"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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(Targeting3);
|
|
|
|
|
|
|
|
var SyntheticHeart = new Augmentation("Synthetic Heart");
|
2017-05-03 21:25:24 +02:00
|
|
|
SyntheticHeart.setRequirements(400000, 500000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 " +
|
2017-02-21 23:11:59 +01:00
|
|
|
"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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(SyntheticHeart);
|
|
|
|
|
|
|
|
var SynfibrilMuscle = new Augmentation("Synfibril Muscle");
|
2017-05-03 21:25:24 +02:00
|
|
|
SynfibrilMuscle.setRequirements(300000, 400000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 " +
|
2017-02-21 23:11:59 +01:00
|
|
|
"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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(SynfibrilMuscle)
|
|
|
|
|
|
|
|
var CombatRib1 = new Augmentation("Combat Rib I");
|
2017-05-03 20:18:09 +02:00
|
|
|
CombatRib1.setRequirements(12000, 15000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-21 23:11:59 +01:00
|
|
|
"This augmentation increases the player's strength and defense by 10%.");
|
2017-02-27 23:14:11 +01:00
|
|
|
CombatRib1.addToFactions(["The Dark Army", "The Syndicate", "Sector-12", "Volhaven", "Ishima",
|
|
|
|
"OmniTek Incorporated", "KuaiGong International", "Blade Industries"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(CombatRib1);
|
|
|
|
|
|
|
|
var CombatRib2 = new Augmentation("Combat Rib II");
|
2017-05-03 20:18:09 +02:00
|
|
|
CombatRib2.setRequirements(40000, 40000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
CombatRib2.setInfo("This is an upgrade to the Combat Rib I augmentation, and is capable of releasing even more potent combat-enhancing " +
|
2017-05-05 17:50:55 +02:00
|
|
|
"drugs into the bloodstream<br><br>. This upgrade increases the player's strength and defense by an additional 20%.")
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(CombatRib2);
|
|
|
|
|
|
|
|
var CombatRib3 = new Augmentation("Combat Rib III");
|
2017-05-03 21:25:24 +02:00
|
|
|
CombatRib3.setRequirements(120000, 100000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
CombatRib3.setInfo("This is an upgrade to the Combat Rib II augmentation, and is capable of releasing even more potent combat-enhancing " +
|
2017-05-05 17:50:55 +02:00
|
|
|
"drugs into the bloodstream<br><br>. This upgrade increases the player's strength and defense by an additional 30%.");
|
2017-02-27 23:14:11 +01:00
|
|
|
CombatRib3.addToFactions(["The Dark Army", "The Syndicate", "OmniTek Incorporated",
|
|
|
|
"KuaiGong International", "Blade Industries", "The Covenant"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(CombatRib3);
|
|
|
|
|
|
|
|
var NanofiberWeave = new Augmentation("Nanofiber Weave");
|
2017-05-03 21:25:24 +02:00
|
|
|
NanofiberWeave.setRequirements(150000, 250000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-21 23:11:59 +01:00
|
|
|
"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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(NanofiberWeave);
|
|
|
|
|
|
|
|
var SubdermalArmor = new Augmentation("NEMEAN Subdermal Weave");
|
2017-05-03 21:25:24 +02:00
|
|
|
SubdermalArmor.setRequirements(600000, 750000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(SubdermalArmor);
|
|
|
|
|
|
|
|
var WiredReflexes = new Augmentation("Wired Reflexes");
|
2017-05-03 20:18:09 +02:00
|
|
|
WiredReflexes.setRequirements(3000, 6000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-22 23:07:55 +01:00
|
|
|
"This augmentation increases the player's agility by 5%.");
|
2017-02-27 23:14:11 +01:00
|
|
|
WiredReflexes.addToFactions(["Tian Di Hui", "Sector-12", "Volhaven", "Aevum", "Ishima",
|
|
|
|
"The Syndicate", "The Dark Army", "Speakers for the Dead"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(WiredReflexes);
|
|
|
|
|
|
|
|
var GrapheneBoneLacings = new Augmentation("Graphene Bone Lacings");
|
2017-05-03 21:25:24 +02:00
|
|
|
GrapheneBoneLacings.setRequirements(750000, 1000000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(GrapheneBoneLacings);
|
|
|
|
|
|
|
|
var BionicSpine = new Augmentation("Bionic Spine");
|
2017-05-03 21:25:24 +02:00
|
|
|
BionicSpine.setRequirements(150000, 75000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(BionicSpine);
|
|
|
|
|
|
|
|
var GrapheneBionicSpine = new Augmentation("Graphene Bionic Spine Upgrade");
|
2017-05-03 21:25:24 +02:00
|
|
|
GrapheneBionicSpine.setRequirements(650000, 1000000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(GrapheneBionicSpine);
|
2017-02-08 23:50:22 +01:00
|
|
|
|
|
|
|
var BionicLegs = new Augmentation("Bionic Legs");
|
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>" +
|
2017-02-22 23:07:55 +01:00
|
|
|
"This augmentation increases the player's agility by 50%.");
|
2017-02-27 23:14:11 +01:00
|
|
|
BionicLegs.addToFactions(["Speakers for the Dead", "The Syndicate", "KuaiGong International",
|
|
|
|
"OmniTek Incorporated", "Blade Industries"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(BionicLegs);
|
|
|
|
|
2017-02-09 19:35:28 +01:00
|
|
|
var GrapheneBionicLegs = new Augmentation("Graphene Bionic Legs Upgrade");
|
2017-05-03 21:25:24 +02:00
|
|
|
GrapheneBionicLegs.setRequirements(400000, 900000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-22 23:07:55 +01:00
|
|
|
"This augmentation increases the player's agility by an additional 150%.");
|
2017-02-27 23:14:11 +01:00
|
|
|
GrapheneBionicLegs.addToFactions(["MegaCorp", "ECorp", "Fulcrum Secret Technologies"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(GrapheneBionicLegs);
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
//Labor stat augmentations
|
|
|
|
var SpeechProcessor = new Augmentation("Speech Processor Implant"); //Cochlear imlant?
|
2017-05-03 21:25:24 +02:00
|
|
|
SpeechProcessor.setRequirements(25000, 15000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(SpeechProcessor);
|
|
|
|
|
2017-04-21 21:06:41 +02:00
|
|
|
TITN41Injection = new Augmentation("TITN-41 Gene-Modification Injection");
|
2017-05-03 20:18:09 +02:00
|
|
|
TITN41Injection.setRequirements(40000, 75000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-04-21 21:06:41 +02:00
|
|
|
"This augmentation increases the player's charisma and charisma experience gain rate by 15%");
|
|
|
|
TITN41Injection.addToFactions(["Silhouette"]);
|
|
|
|
|
2017-02-17 23:19:25 +01:00
|
|
|
var EnhancedSocialInteractionImplant = new Augmentation("Enhanced Social Interaction Implant");
|
2017-05-03 20:18:09 +02:00
|
|
|
EnhancedSocialInteractionImplant.setRequirements(500000, 500000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(EnhancedSocialInteractionImplant);
|
|
|
|
|
|
|
|
//Hacking augmentations
|
2017-05-05 16:21:08 +02:00
|
|
|
var BitWire = new Augmentation("BitWire");
|
|
|
|
BitWire.setRequirements(4000, 3000000);
|
|
|
|
BitWire.setInfo("A small brain implant embedded in the cerebrum. This regulates and improves the brain's computing " +
|
2017-05-05 17:50:55 +02:00
|
|
|
"capabilities. <br><br> This augmentation increases the player's hacking skill by 5%");
|
2017-05-05 16:21:08 +02:00
|
|
|
BitWire.addToFactions(["CyberSec", "BitRunners", "NiteSec"]);
|
|
|
|
AddToAugmentations(BitWire);
|
|
|
|
|
2017-02-17 23:19:25 +01:00
|
|
|
var ArtificialBioNeuralNetwork = new Augmentation("Artificial Bio-neural Network Implant");
|
2017-05-03 21:25:24 +02:00
|
|
|
ArtificialBioNeuralNetwork.setRequirements(150000, 600000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 2%<br>" +
|
|
|
|
"Increases the amount of money the player's gains from hacking by 10%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Inreases the player's hacking skill by 10%");
|
2017-02-27 23:14:11 +01:00
|
|
|
ArtificialBioNeuralNetwork.addToFactions(["BitRunners", "Fulcrum Secret Technologies"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ArtificialBioNeuralNetwork);
|
|
|
|
|
|
|
|
var ArtificialSynapticPotentiation = new Augmentation("Artificial Synaptic Potentiation");
|
2017-05-04 21:42:27 +02:00
|
|
|
ArtificialSynapticPotentiation.setRequirements(20000, 80000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-27 23:14:11 +01:00
|
|
|
"This augmentation increases the player's hacking speed and hacking chance by 1%.");
|
|
|
|
ArtificialSynapticPotentiation.addToFactions(["The Black Hand", "NiteSec"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ArtificialSynapticPotentiation);
|
2017-02-08 23:50:22 +01:00
|
|
|
|
2017-02-20 23:06:16 +01:00
|
|
|
var EnhancedMyelinSheathing = new Augmentation("Enhanced Myelin Sheathing");
|
2017-05-03 21:25:24 +02:00
|
|
|
EnhancedMyelinSheathing.setRequirements(300000, 850000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 1%<br>" +
|
|
|
|
"Increases the player's hacking skill by 5%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the player's hacking experience gain rate by 5%");
|
2017-02-27 23:14:11 +01:00
|
|
|
EnhancedMyelinSheathing.addToFactions(["Fulcrum Secret Technologies", "BitRunners", "The Black Hand"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(EnhancedMyelinSheathing);
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
var SynapticEnhancement = new Augmentation("Synaptic Enhancement Implant");
|
2017-05-05 16:21:08 +02:00
|
|
|
SynapticEnhancement.setRequirements(4000, 2000000);
|
|
|
|
SynapticEnhancement.setInfo("A small cranial implant that continuously uses weak electric signals to stimulate the brain and " +
|
2017-05-05 17:50:55 +02:00
|
|
|
"induce stronger synaptic activity. This improves the the user's cognitive abilities.<br><br>" +
|
2017-02-22 23:07:55 +01:00
|
|
|
"This augmentation increases the player's hacking speed by 1%.");
|
2017-02-27 23:14:11 +01:00
|
|
|
SynapticEnhancement.addToFactions(["CyberSec"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(SynapticEnhancement);
|
|
|
|
|
|
|
|
var NeuralRetentionEnhancement = new Augmentation("Neural-Retention Enhancement");
|
2017-05-03 20:18:09 +02:00
|
|
|
NeuralRetentionEnhancement.setRequirements(80000, 100000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(NeuralRetentionEnhancement);
|
|
|
|
|
|
|
|
var DataJack = new Augmentation("DataJack");
|
2017-05-03 21:25:24 +02:00
|
|
|
DataJack.setRequirements(200000, 75000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-27 23:14:11 +01:00
|
|
|
"This augmentation increases the amount of money the player gains from hacking by 20%");
|
|
|
|
DataJack.addToFactions(["BitRunners", "The Black Hand", "NiteSec", "Chongqing", "New Tokyo"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(DataJack);
|
|
|
|
|
|
|
|
var ENM = new Augmentation("Embedded Netburner Module");
|
2017-05-04 21:42:27 +02:00
|
|
|
ENM.setRequirements(20000, 100000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-05-05 16:21:08 +02:00
|
|
|
"This augmentation increases the player's hacking skill by 2%");
|
2017-02-27 23:14:11 +01:00
|
|
|
ENM.addToFactions(["BitRunners", "The Black Hand", "NiteSec", "ECorp", "MegaCorp",
|
|
|
|
"Fulcrum Secret Technologies", "NWO", "Blade Industries"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ENM);
|
|
|
|
|
|
|
|
var ENMCore = new Augmentation("Embedded Netburner Module Core Implant");
|
2017-05-03 21:25:24 +02:00
|
|
|
ENMCore.setRequirements(250000, 500000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 2%<br>" +
|
|
|
|
"Increases the amount of money the player gains from hacking by 10%<br>" +
|
|
|
|
"Increases the player's chance of successfully performing a hack by 2%<br>" +
|
|
|
|
"Increases the player's hacking experience gain rate by 10%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the player's hacking skill by 1%");
|
2017-02-27 23:14:11 +01:00
|
|
|
ENMCore.addToFactions(["BitRunners", "The Black Hand", "NiteSec", "ECorp", "MegaCorp",
|
|
|
|
"Fulcrum Secret Technologies", "NWO", "Blade Industries"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ENMCore);
|
|
|
|
|
|
|
|
var ENMCoreV2 = new Augmentation("Embedded Netburner Module Core V2 Upgrade");
|
2017-05-03 21:25:24 +02:00
|
|
|
ENMCoreV2.setRequirements(500000, 1000000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the player's hacking skill by 5%");
|
2017-02-27 23:14:11 +01:00
|
|
|
ENMCoreV2.addToFactions(["ECorp", "MegaCorp", "Fulcrum Secret Technologies", "NWO",
|
|
|
|
"Blade Industries", "OmniTek Incorporated", "KuaiGong International"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ENMCoreV2);
|
|
|
|
|
|
|
|
var ENMCoreV3 = new Augmentation("Embedded Netburner Module Core V3 Upgrade");
|
2017-05-03 21:25:24 +02:00
|
|
|
ENMCoreV3.setRequirements(750000, 1250000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the player's hacking skill by 10%");
|
2017-02-27 23:14:11 +01:00
|
|
|
ENMCoreV3.addToFactions(["ECorp", "MegaCorp", "Fulcrum Secret Technologies", "NWO",
|
|
|
|
"Daedalus", "The Covenant", "Illuminati"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ENMCoreV3);
|
|
|
|
|
|
|
|
var ENMAnalyzeEngine = new Augmentation("Embedded Netburner Module Analyze Engine");
|
2017-05-03 21:25:24 +02:00
|
|
|
ENMAnalyzeEngine.setRequirements(700000, 1000000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ENMAnalyzeEngine);
|
|
|
|
|
|
|
|
var ENMDMA = new Augmentation("Embedded Netburner Module Direct Memory Access Upgrade");
|
2017-05-03 21:25:24 +02:00
|
|
|
ENMDMA.setRequirements(750000, 1100000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"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-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(ENMDMA);
|
|
|
|
|
|
|
|
var Neuralstimulator = new Augmentation("Neuralstimulator");
|
2017-05-03 21:25:24 +02:00
|
|
|
Neuralstimulator.setRequirements(120000, 600000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 1%<br>" +
|
|
|
|
"Increases the player's chance of successfully performing a hack by 10%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the player's hacking experience gain rate by 20%");
|
2017-02-27 23:14:11 +01:00
|
|
|
Neuralstimulator.addToFactions(["The Black Hand", "Chongqing", "Sector-12", "New Tokyo", "Aevum",
|
2017-02-17 23:19:25 +01:00
|
|
|
"Ishima", "Volhaven", "Bachman & Associates", "Clarke Incorporated",
|
2017-02-27 23:14:11 +01:00
|
|
|
"Four Sigma"]);
|
2017-02-17 23:19:25 +01:00
|
|
|
AddToAugmentations(Neuralstimulator);
|
|
|
|
|
2017-02-08 23:50:22 +01:00
|
|
|
//Work Augmentations
|
|
|
|
var NuoptimalInjectorImplant = new Augmentation("Nuoptimal Nootropic Injector Implant");
|
2017-05-04 21:42:27 +02:00
|
|
|
NuoptimalInjectorImplant.setRequirements(12000, 30000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-05-05 16:21:08 +02:00
|
|
|
"This augmentation increases the amount of reputation the player gains " +
|
2017-02-23 22:41:20 +01:00
|
|
|
"when working for a company by 10%.");
|
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-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(NuoptimalInjectorImplant);
|
|
|
|
|
|
|
|
var SpeechEnhancement = new Augmentation("Speech Enhancement");
|
2017-05-05 16:21:08 +02:00
|
|
|
SpeechEnhancement.setRequirements(5000, 4000000);
|
|
|
|
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 5%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the amount of reputation the player gains when working for a company by 5%");
|
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-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(SpeechEnhancement);
|
|
|
|
|
|
|
|
var FocusWire = new Augmentation("FocusWire"); //Stops procrastination
|
2017-05-04 21:42:27 +02:00
|
|
|
FocusWire.setRequirements(100000, 200000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 5%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the amount of reputation the player gains when working for a company by 5%");
|
2017-02-27 23:14:11 +01:00
|
|
|
FocusWire.addToFactions(["Bachman & Associates", "Clarke Incorporated", "Four Sigma", "KuaiGong International"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(FocusWire)
|
|
|
|
|
|
|
|
var PCDNI = new Augmentation("PC Direct-Neural Interface");
|
2017-05-03 21:25:24 +02:00
|
|
|
PCDNI.setRequirements(400000, 650000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 10%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"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-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(PCDNI);
|
|
|
|
|
|
|
|
var PCDNIOptimizer = new Augmentation("PC Direct-Neural Interface Optimization Submodule");
|
2017-05-03 21:25:24 +02:00
|
|
|
PCDNIOptimizer.setRequirements(500000, 875000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 20%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the player's hacking skill by 20%");
|
2017-02-27 23:14:11 +01:00
|
|
|
PCDNIOptimizer.addToFactions(["Fulcrum Secret Technologies", "ECorp", "Blade Industries"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(PCDNIOptimizer);
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
var PCDNINeuralNetwork = new Augmentation("PC Direct-Neural Interface NeuroNet Injector");
|
2017-05-03 21:25:24 +02:00
|
|
|
PCDNINeuralNetwork.setRequirements(600000, 1100000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 10%<br>" +
|
|
|
|
"Increases the player's hacking skill by 10%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the player's hacking speed by 2%");
|
2017-02-27 23:14:11 +01:00
|
|
|
PCDNINeuralNetwork.addToFactions(["Fulcrum Secret Technologies"]);
|
2017-02-09 19:35:28 +01:00
|
|
|
AddToAugmentations(PCDNINeuralNetwork);
|
2017-02-08 23:50:22 +01:00
|
|
|
|
2017-05-02 21:24:24 +02:00
|
|
|
|
|
|
|
//HacknetNode Augmentations
|
|
|
|
var HacknetNodeCPUUpload = new Augmentation("Hacknet Node CPU Architecture Neural-Upload");
|
2017-05-03 20:18:09 +02:00
|
|
|
HacknetNodeCPUUpload.setRequirements(15000, 12000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 15%<br>" +
|
2017-05-02 21:24:24 +02:00
|
|
|
"Decreases the cost of purchasing a Hacknet Node Core by 10%");
|
2017-05-03 19:58:09 +02:00
|
|
|
HacknetNodeCPUUpload.addToFactions(["Netburners"]);
|
2017-05-02 21:24:24 +02:00
|
|
|
AddToAugmentations(HacknetNodeCPUUpload);
|
|
|
|
|
|
|
|
var HacknetNodeCacheUpload = new Augmentation("Hacknet Node Cache Architecture Neural-Upload");
|
2017-05-03 20:18:09 +02:00
|
|
|
HacknetNodeCacheUpload.setRequirements(6000, 6000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 10%<br>" +
|
2017-05-02 21:24:24 +02:00
|
|
|
"Decreases the cost of leveling up a Hacknet Node by 10%");
|
2017-05-03 19:58:09 +02:00
|
|
|
HacknetNodeCacheUpload.addToFactions(["Netburners"]);
|
2017-05-02 21:24:24 +02:00
|
|
|
AddToAugmentations(HacknetNodeCacheUpload);
|
|
|
|
|
|
|
|
var HacknetNodeNICUpload = new Augmentation("HacknetNode NIC Architecture Neural-Upload");
|
2017-05-03 20:18:09 +02:00
|
|
|
HacknetNodeNICUpload.setRequirements(2000, 2000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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 5%<br>" +
|
2017-05-02 21:24:24 +02:00
|
|
|
"Decreases the cost of purchasing a Hacknet Node by 5%");
|
2017-05-03 19:58:09 +02:00
|
|
|
HacknetNodeNICUpload.addToFactions(["Netburners"]);
|
2017-05-02 21:24:24 +02:00
|
|
|
AddToAugmentations(HacknetNodeNICUpload);
|
|
|
|
|
|
|
|
var HacknetNodeKernelDNI = new Augmentation("Hacknet Node Kernel Direct-Neural Interface");
|
2017-05-03 21:25:24 +02:00
|
|
|
HacknetNodeKernelDNI.setRequirements(25000, 30000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-05-02 21:24:24 +02:00
|
|
|
"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-02 21:24:24 +02:00
|
|
|
AddToAugmentations(HacknetNodeKernelDNI);
|
|
|
|
|
|
|
|
var HacknetNodeCoreDNI = new Augmentation("Hacknet Node Core Direct-Neural Interface");
|
2017-05-03 21:25:24 +02:00
|
|
|
HacknetNodeCoreDNI.setRequirements(40000, 50000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-05-02 21:24:24 +02:00
|
|
|
"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-02 21:24:24 +02:00
|
|
|
AddToAugmentations(HacknetNodeCoreDNI);
|
|
|
|
|
2017-02-17 23:19:25 +01:00
|
|
|
//Misc augmentations
|
2017-02-08 23:50:22 +01:00
|
|
|
var Neurotrainer1 = new Augmentation("Neurotrainer I");
|
2017-05-05 16:21:08 +02:00
|
|
|
Neurotrainer1.setRequirements(3000, 3000000);
|
|
|
|
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>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"This augmentation increases the player's experience gain rate for all stats by 5%");
|
2017-02-27 23:14:11 +01:00
|
|
|
Neurotrainer1.addToFactions(["CyberSec"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(Neurotrainer1);
|
|
|
|
|
|
|
|
var Neurotrainer2 = new Augmentation("Neurotrainer II");
|
2017-05-04 21:42:27 +02:00
|
|
|
Neurotrainer2.setRequirements(16000, 20000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"This augmentation increases the player's experience gain rate for all stats by 10%");
|
2017-02-27 23:14:11 +01:00
|
|
|
Neurotrainer2.addToFactions(["BitRunners", "NiteSec"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(Neurotrainer2);
|
|
|
|
|
|
|
|
var Neurotrainer3 = new Augmentation("Neurotrainer III");
|
2017-05-04 21:42:27 +02:00
|
|
|
Neurotrainer3.setRequirements(40000, 100000000);
|
2017-05-05 16:21:08 +02:00
|
|
|
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>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"This augmentation increases the player's experience gain rate for all stats by 20%");
|
2017-02-27 23:14:11 +01:00
|
|
|
Neurotrainer3.addToFactions(["NWO", "Four Sigma"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(Neurotrainer3);
|
|
|
|
|
|
|
|
var Hypersight = new Augmentation("HyperSight Corneal Implant");
|
2017-05-05 16:21:08 +02:00
|
|
|
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 1%<br>" +
|
2017-02-23 22:41:20 +01:00
|
|
|
"Increases the amount of money the player gains from hacking by 10%");
|
2017-05-03 21:25:24 +02:00
|
|
|
Hypersight.setRequirements(120000, 650000000);
|
2017-02-27 23:14:11 +01:00
|
|
|
Hypersight.addToFactions(["Blade Industries", "KuaiGong International"]);
|
2017-02-08 23:50:22 +01:00
|
|
|
AddToAugmentations(Hypersight);
|
2016-12-22 16:56:15 +01:00
|
|
|
}
|
|
|
|
|
2017-02-17 23:19:25 +01:00
|
|
|
applyAugmentation = function(aug, faction) {
|
2017-04-11 22:42:06 +02:00
|
|
|
if (aug.owned) {
|
|
|
|
throw new Error("This Augmentation is already owned/applied...somethings wrong");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-17 23:19:25 +01:00
|
|
|
switch(aug.name) {
|
|
|
|
//Combat stat augmentations
|
|
|
|
case "Augmented Targeting I":
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.dexterity_mult *= 1.1;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
|
|
|
case "Augmented Targeting II":
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.dexterity_mult *= 1.2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
|
|
|
case "Augmented Targeting III":
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.dexterity_mult *= 1.5;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Synthetic Heart": //High level
|
|
|
|
Player.agility_mult *= 2.0;
|
|
|
|
Player.strength_mult *= 2.0;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Synfibril Muscle": //Medium-high level
|
|
|
|
Player.strength_mult *= 1.5;
|
|
|
|
Player.defense_mult *= 1.5;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
|
|
|
case "Combat Rib I":
|
|
|
|
//Str and Defense 5%
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.strength_mult *= 1.1;
|
|
|
|
Player.defense_mult *= 1.1;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
|
|
|
case "Combat Rib II":
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.strength_mult *= 1.2;
|
|
|
|
Player.defense_mult *= 1.2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
|
|
|
case "Combat Rib III":
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.strength_mult *= 1.3;
|
|
|
|
Player.defense_mult *= 1.3;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Nanofiber Weave": //Med level
|
|
|
|
Player.strength_mult *= 1.3;
|
|
|
|
Player.defense_mult *= 1.3;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "NEMEAN Subdermal Weave": //High level
|
|
|
|
Player.defense_mult *= 2.5;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Wired Reflexes": //Low level
|
|
|
|
Player.agility_mult *= 1.05;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Graphene Bone Lacings": //High level
|
|
|
|
Player.strength_mult *= 2;
|
|
|
|
Player.defense_mult *= 2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Bionic Spine": //Med level
|
|
|
|
Player.strength_mult *= 1.2;
|
|
|
|
Player.defense_mult *= 1.2;
|
|
|
|
Player.agility_mult *= 1.2;
|
|
|
|
Player.dexterity_mult *= 1.2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Graphene Bionic Spine Upgrade": //High level
|
|
|
|
Player.strength_mult *= 2;
|
|
|
|
Player.defense_mult *= 2;
|
|
|
|
Player.agility_mult *= 2;
|
|
|
|
Player.dexterity_mult *= 2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Bionic Legs": //Med level
|
|
|
|
Player.agility_mult *= 1.5;
|
2017-02-08 23:50:22 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Graphene Bionic Legs Upgrade": //High level
|
|
|
|
player.agility_mult *= 3.0;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
//Labor stats augmentations
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Enhanced Social Interaction Implant": //Med-high level
|
|
|
|
Player.charisma_mult *= 1.5;
|
|
|
|
Player.charisma_exp_mult *= 1.5;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Speech Processor Implant": //Med level
|
|
|
|
Player.charisma_mult *= 1.2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2016-12-22 16:56:15 +01:00
|
|
|
|
2017-02-17 23:19:25 +01:00
|
|
|
//Hacking augmentations
|
2017-05-05 16:21:08 +02:00
|
|
|
case "BitWire":
|
|
|
|
Player.hacking_mult *= 1.05;
|
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Artificial Bio-neural Network Implant": //Med level
|
|
|
|
Player.hacking_speed_mult *= .98;
|
|
|
|
Player.hacking_money_mult *= 1.1;
|
|
|
|
Player.hacking_mult *= 1.1;
|
|
|
|
break;
|
|
|
|
case "Artificial Synaptic Potentiation": //Med level
|
|
|
|
Player.hacking_speed_mult *= .99;
|
|
|
|
Player.hacking_chance_mult *= 1.01;
|
|
|
|
break;
|
|
|
|
case "Enhanced Myelin Sheathing": //Med level
|
|
|
|
Player.hacking_speed_mult *= .99;
|
|
|
|
Player.hacking_exp_mult *= 1.05;
|
|
|
|
Player.hacking_mult *= 1.05;
|
|
|
|
break;
|
|
|
|
case "Synaptic Enhancement Implant": //Low Level
|
|
|
|
Player.hacking_speed_mult *= .99;
|
|
|
|
break;
|
|
|
|
case "Neural-Retention Enhancement": //Med level
|
|
|
|
Player.hacking_exp_mult *= 1.4;
|
|
|
|
break;
|
|
|
|
case "DataJack": //Med low level
|
|
|
|
Player.hacking_money_mult *= 1.2;
|
|
|
|
break;
|
|
|
|
case "Embedded Netburner Module": //Medium level
|
|
|
|
Player.hacking_mult *= 1.01;
|
|
|
|
break;
|
|
|
|
case "Embedded Netburner Module Core Implant": //Medium level
|
|
|
|
Player.hacking_speed_mult *= .98;
|
|
|
|
Player.hacking_money_mult *= 1.1;
|
|
|
|
Player.hacking_chance_mult *= 1.02;
|
|
|
|
Player.hacking_exp_mult *= 1.1;
|
|
|
|
Player.hacking_mult *= 1.01;
|
|
|
|
break;
|
|
|
|
case "Embedded Netburner Module Core V2 Upgrade": //Medium high level
|
|
|
|
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.05;
|
|
|
|
break;
|
|
|
|
case "Embedded Netburner Module Core V3 Upgrade": //High level
|
|
|
|
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.1;
|
|
|
|
break;
|
|
|
|
case "Embedded Netburner Module Analyze Engine": //High level
|
2017-02-17 23:19:25 +01:00
|
|
|
//Hacking speed 20% - High level
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.hacking_speed_mult *= 0.9;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Embedded Netburner Module Direct Memory Access Upgrade": //High level
|
2017-02-17 23:19:25 +01:00
|
|
|
//Money hacked 20% - High level
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.hacking_money_mult *= 1.5;
|
|
|
|
Player.hacking_chance_mult *= 1.2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Neuralstimulator": //Medium Level
|
|
|
|
Player.hacking_speed_mult *= .99;
|
|
|
|
Player.hacking_chance_mult *= 1.1;
|
|
|
|
Player.hacking_exp_mult *= 1.2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
|
2017-02-08 23:50:22 +01:00
|
|
|
//Work augmentations
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Nuoptimal Nootropic Injector Implant": //Low medium level
|
|
|
|
Player.company_rep_mult *= 1.1;
|
|
|
|
break;
|
|
|
|
case "Speech Enhancement": //Low level
|
|
|
|
Player.company_rep_mult *= 1.05;
|
|
|
|
Player.charisma_mult *= 1.05;
|
|
|
|
break;
|
|
|
|
case "FocusWire": //Med level
|
|
|
|
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.05;
|
|
|
|
Player.work_money_mult *= 1.05;
|
|
|
|
break;
|
|
|
|
case "PC Direct-Neural Interface": //Med level
|
|
|
|
Player.company_rep_mult *= 1.1;
|
|
|
|
Player.hacking_mult *= 1.1;
|
|
|
|
break;
|
|
|
|
case "PC Direct-Neural Interface Optimization Submodule": //High level
|
2017-02-08 23:50:22 +01:00
|
|
|
//Allows u to better optimize code/pc when connecting with PC DNI..helps with software/IT jobs
|
2017-02-20 23:06:16 +01:00
|
|
|
Player.company_rep_mult *= 1.2;
|
|
|
|
Player.hacking_mult *= 1.2;
|
2017-02-17 23:19:25 +01:00
|
|
|
break;
|
2017-02-20 23:06:16 +01:00
|
|
|
case "PC Direct-Neural Interface NeuroNet Injector": //High level
|
|
|
|
Player.company_rep_mult *= 1.1;
|
|
|
|
Player.hacking_mult *= 1.1;
|
|
|
|
Player.hacking_speed_mult *= .98;
|
2017-02-08 23:50:22 +01:00
|
|
|
break;
|
|
|
|
|
2017-05-02 21:24:24 +02:00
|
|
|
//Hacknet Node Augmentations
|
|
|
|
case "Hacknet Node CPU Architecture Neural-Upload":
|
|
|
|
Player.hacknet_node_money_mult *= 1.15;
|
|
|
|
Player.hacknet_node_purchase_cost_mult *= 0.90;
|
|
|
|
break;
|
|
|
|
case "Hacknet Node Cache Architecture Neural-Upload":
|
|
|
|
Player.hacknet_node_money_mult *= 1.10;
|
|
|
|
Player.hacknet_node_level_cost_mult *= 0.90;
|
|
|
|
break;
|
|
|
|
case "HacknetNode NIC Architecture Neural-Upload":
|
|
|
|
Player.hacknet_node_money_mult *= 1.05;
|
|
|
|
Player.hacknet_node_purchase_cost_mult *= 0.95;
|
|
|
|
break;
|
|
|
|
case "Hacknet Node Kernel Direct-Neural Interface":
|
|
|
|
Player.hacknet_node_money_mult *= 1.50;
|
|
|
|
break;
|
|
|
|
case "Hacknet Node Core Direct-Neural Interface":
|
|
|
|
Player.hacknet_node_money_mult *= 1.75;
|
|
|
|
break;
|
|
|
|
|
2017-02-08 23:50:22 +01:00
|
|
|
//Misc augmentations
|
2017-02-20 23:06:16 +01:00
|
|
|
case "Neurotrainer I": //Low Level
|
|
|
|
Player.hacking_exp_mult *= 1.05;
|
|
|
|
Player.strength_exp_mult *= 1.05;
|
|
|
|
Player.defense_exp_mult *= 1.05;
|
|
|
|
Player.dexterity_exp_mult *= 1.05;
|
|
|
|
Player.agility_exp_mult *= 1.05;
|
|
|
|
this.charisma_exp_mult *= 1.05;
|
|
|
|
break;
|
|
|
|
case "Neurotrainer II": //Medium level
|
|
|
|
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 "Neurotrainer III": //High Level
|
|
|
|
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 "HyperSight Corneal Implant": //Medium high level
|
|
|
|
Player.dexterity_mult *= 1.5;
|
|
|
|
Player.hacking_speed_mult *= .99;
|
|
|
|
Player.hacking_money_mult *= 1.1;
|
2017-02-08 23:50:22 +01:00
|
|
|
break;
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
default:
|
|
|
|
console.log("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;
|
2016-12-22 16:56:15 +01:00
|
|
|
}
|