More balancing, small bug fix with prestige

This commit is contained in:
Daniel Xie 2017-05-12 23:40:12 -05:00
parent fe234b3344
commit 9798aae545
3 changed files with 8 additions and 11 deletions

@ -807,7 +807,7 @@ initAugmentations = function() {
AddToAugmentations(NeuroFluxGovernor);
var Neurotrainer1 = new Augmentation(AugmentationNames.Neurotrainer1);
Neurotrainer1.setRequirements(500, 600000);
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 " +

@ -10,8 +10,8 @@ CONSTANTS = {
CorpFactionRepRequirement: 250000,
/* Base costs */
BaseCostFor1GBOfRamHome: 75000,
BaseCostFor1GBOfRamServer: 50000, //1 GB of RAM
BaseCostFor1GBOfRamHome: 50000,
BaseCostFor1GBOfRamServer: 40000, //1 GB of RAM
BaseCostFor1GBOfRamHacknetNode: 25000,
BaseCostForHacknetNode: 1000,

@ -113,8 +113,11 @@ function prestigeAugmentation() {
delete AllServers[member];
}
AllServers = {};
//Delete Special Server IPs
for (var member in SpecialServerIps) {
delete SpecialServerIps[member];
}
SpecialServersIps = null;
//Reset home computer (only the programs) and add to AllServers
homeComp.programs.length = 0;
@ -156,12 +159,6 @@ function prestigeAugmentation() {
Player.hacknetNodes.length = 0;
Player.totalHacknetNodeProduction = 0;
//Delete Special Server IPs
for (var member in SpecialServerIps) {
delete SpecialServerIps[member];
}
SpecialServersIps = null;
//Delete Companies
for (var member in Companies) {
if (Companies.hasOwnProperty(member)) {