mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-26 19:14:32 +02:00
Added scp command to netscript. Nerfed Hacknet Node augmentations
This commit is contained in:
@@ -789,7 +789,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 30%.");
|
||||
"This augmentation increases the amount of money produced by Hacknet Nodes by 25%.");
|
||||
HacknetNodeKernelDNI.addToFactions(["Netburners"]);
|
||||
if (augmentationExists(AugmentationNames.HacknetNodeKernelDNI)) {
|
||||
HacknetNodeKernelDNI.owned = Augmentations[AugmentationNames.HacknetNodeKernelDNI].owned;
|
||||
@@ -802,7 +802,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 50%.");
|
||||
"This augmentation increases the amount of money produced by Hacknet Nodes by 45%.");
|
||||
HacknetNodeCoreDNI.addToFactions(["Netburners"]);
|
||||
if (augmentationExists(AugmentationNames.HacknetNodeCoreDNI)) {
|
||||
HacknetNodeCoreDNI.owned = Augmentations[AugmentationNames.HacknetNodeCoreDNI].owned;
|
||||
@@ -1528,10 +1528,10 @@ applyAugmentation = function(aug, reapply=false) {
|
||||
Player.hacknet_node_purchase_cost_mult *= 0.9;
|
||||
break;
|
||||
case AugmentationNames.HacknetNodeKernelDNI:
|
||||
Player.hacknet_node_money_mult *= 1.30;
|
||||
Player.hacknet_node_money_mult *= 1.25;
|
||||
break;
|
||||
case AugmentationNames.HacknetNodeCoreDNI:
|
||||
Player.hacknet_node_money_mult *= 1.50;
|
||||
Player.hacknet_node_money_mult *= 1.45;
|
||||
break;
|
||||
|
||||
//Misc augmentations
|
||||
|
||||
Reference in New Issue
Block a user