mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 13:43:49 +01:00
Nerfed the top 2 Netburner augmentations. Slightly icnreased cost for upgrading ram and core for Hacknet nodes
This commit is contained in:
parent
14e6b604b4
commit
f325aeb897
@ -55,6 +55,7 @@
|
||||
<script src="src/SaveObject.js"></script>
|
||||
<script src="src/DarkWeb.js"></script>
|
||||
<script src="src/InteractiveTutorial.js"></script>
|
||||
<script src="src/Alias.js"></script>
|
||||
|
||||
<script src="src/engine.js"></script>
|
||||
|
||||
|
@ -790,7 +790,7 @@ initAugmentations = function() {
|
||||
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 " +
|
||||
"electrochemical signals.<br><br>" +
|
||||
"This augmentation increases the amount of money produced by Hacknet Nodes by 50%.");
|
||||
"This augmentation increases the amount of money produced by Hacknet Nodes by 30%.");
|
||||
HacknetNodeKernelDNI.addToFactions(["Netburners"]);
|
||||
if (augmentationExists(AugmentationNames.HacknetNodeKernelDNI)) {
|
||||
HacknetNodeKernelDNI.owned = Augmentations[AugmentationNames.HacknetNodeKernelDNI].owned;
|
||||
@ -803,7 +803,7 @@ initAugmentations = function() {
|
||||
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 " +
|
||||
"the mind's electrochemical signals.<br><br>" +
|
||||
"This augmentation increases the amount of money produced by Hacknet Nodes by 75%.");
|
||||
"This augmentation increases the amount of money produced by Hacknet Nodes by 50%.");
|
||||
HacknetNodeCoreDNI.addToFactions(["Netburners"]);
|
||||
if (augmentationExists(AugmentationNames.HacknetNodeCoreDNI)) {
|
||||
HacknetNodeCoreDNI.owned = Augmentations[AugmentationNames.HacknetNodeCoreDNI].owned;
|
||||
@ -1531,10 +1531,10 @@ applyAugmentation = function(aug, faction) {
|
||||
Player.hacknet_node_purchase_cost_mult *= 0.9;
|
||||
break;
|
||||
case AugmentationNames.HacknetNodeKernelDNI:
|
||||
Player.hacknet_node_money_mult *= 1.50;
|
||||
Player.hacknet_node_money_mult *= 1.30;
|
||||
break;
|
||||
case AugmentationNames.HacknetNodeCoreDNI:
|
||||
Player.hacknet_node_money_mult *= 1.75;
|
||||
Player.hacknet_node_money_mult *= 1.50;
|
||||
break;
|
||||
|
||||
//Misc augmentations
|
||||
|
@ -21,8 +21,8 @@ CONSTANTS = {
|
||||
HacknetNodeMoneyGainPerLevel: 1.25,
|
||||
HacknetNodePurchaseNextMult: 1.33, //Multiplier when purchasing an additional hacknet node
|
||||
HacknetNodeUpgradeLevelMult: 1.04, //Multiplier for cost when upgrading level
|
||||
HacknetNodeUpgradeRamMult: 1.21, //Multiplier for cost when upgrading RAM
|
||||
HacknetNodeUpgradeCoreMult: 1.41, //Multiplier for cost when buying another core
|
||||
HacknetNodeUpgradeRamMult: 1.22, //Multiplier for cost when upgrading RAM
|
||||
HacknetNodeUpgradeCoreMult: 1.42, //Multiplier for cost when buying another core
|
||||
|
||||
HacknetNodeMaxLevel: 200,
|
||||
HacknetNodeMaxRam: 64,
|
||||
|
@ -492,9 +492,13 @@ var Terminal = {
|
||||
if (commandArray.length == 1) {
|
||||
printAliases();
|
||||
} else if (commandArray.length == 2) {
|
||||
|
||||
if (parseAliasDeclaration(commandArray[1])) {
|
||||
|
||||
} else {
|
||||
post('Incorrect usage of alias command. Usage: alias [aliasname="value"]'); return;
|
||||
}
|
||||
} else {
|
||||
post("Incorrect usage of alias command. Usage: alias [aliasname='value'"); return;
|
||||
post('Incorrect usage of alias command. Usage: alias [aliasname="value"]'); return;
|
||||
}
|
||||
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user