mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
More balancing, small bug fix with prestige
This commit is contained in:
parent
fe234b3344
commit
9798aae545
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user