mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-23 06:32:26 +01:00
Increased cost of RAM by 10%. Decreased cost multiplier of NeuroFlux Governor augmentation
This commit is contained in:
parent
d7f68505b5
commit
d48428f0e8
@ -602,7 +602,6 @@
|
|||||||
<a id="location-leadership-class" class="a-link-button">Take Leadership course</a>
|
<a id="location-leadership-class" class="a-link-button">Take Leadership course</a>
|
||||||
|
|
||||||
<!-- Purchase servers -->
|
<!-- Purchase servers -->
|
||||||
<a id="location-purchase-1gb" class="a-link-button"> Purchase 1GB Server - $75,000</a>
|
|
||||||
<a id="location-purchase-2gb" class="a-link-button"> Purchase 2GB Server - $150,000</a>
|
<a id="location-purchase-2gb" class="a-link-button"> Purchase 2GB Server - $150,000</a>
|
||||||
<a id="location-purchase-4gb" class="a-link-button"> Purchase 4GB Server - $300,000</a>
|
<a id="location-purchase-4gb" class="a-link-button"> Purchase 4GB Server - $300,000</a>
|
||||||
<a id="location-purchase-8gb" class="a-link-button"> Purchase 8GB Server - $600,000</a>
|
<a id="location-purchase-8gb" class="a-link-button"> Purchase 8GB Server - $600,000</a>
|
||||||
|
@ -10,8 +10,8 @@ CONSTANTS = {
|
|||||||
CorpFactionRepRequirement: 250000,
|
CorpFactionRepRequirement: 250000,
|
||||||
|
|
||||||
/* Base costs */
|
/* Base costs */
|
||||||
BaseCostFor1GBOfRamHome: 40000,
|
BaseCostFor1GBOfRamHome: 45000,
|
||||||
BaseCostFor1GBOfRamServer: 50000, //1 GB of RAM
|
BaseCostFor1GBOfRamServer: 55000, //1 GB of RAM
|
||||||
BaseCostFor1GBOfRamHacknetNode: 30000,
|
BaseCostFor1GBOfRamHacknetNode: 30000,
|
||||||
|
|
||||||
BaseCostForHacknetNode: 1000,
|
BaseCostForHacknetNode: 1000,
|
||||||
@ -30,7 +30,7 @@ CONSTANTS = {
|
|||||||
|
|
||||||
/* Augmentation */
|
/* Augmentation */
|
||||||
//NeuroFlux Governor cost multiplier as you level up
|
//NeuroFlux Governor cost multiplier as you level up
|
||||||
NeuroFluxGovernorLevelMult: 1.14,
|
NeuroFluxGovernorLevelMult: 1.13,
|
||||||
|
|
||||||
/* Script related things */
|
/* Script related things */
|
||||||
//Time (ms) it takes to run one operation in Netscript.
|
//Time (ms) it takes to run one operation in Netscript.
|
||||||
|
@ -124,7 +124,6 @@ displayLocationContent = function() {
|
|||||||
var classManagement = document.getElementById("location-management-class");
|
var classManagement = document.getElementById("location-management-class");
|
||||||
var classLeadership = document.getElementById("location-leadership-class");
|
var classLeadership = document.getElementById("location-leadership-class");
|
||||||
|
|
||||||
var purchase1gb = document.getElementById("location-purchase-1gb");
|
|
||||||
var purchase2gb = document.getElementById("location-purchase-2gb");
|
var purchase2gb = document.getElementById("location-purchase-2gb");
|
||||||
var purchase4gb = document.getElementById("location-purchase-4gb");
|
var purchase4gb = document.getElementById("location-purchase-4gb");
|
||||||
var purchase8gb = document.getElementById("location-purchase-8gb");
|
var purchase8gb = document.getElementById("location-purchase-8gb");
|
||||||
@ -210,7 +209,6 @@ displayLocationContent = function() {
|
|||||||
classManagement.style.display = "none";
|
classManagement.style.display = "none";
|
||||||
classLeadership.style.display = "none";
|
classLeadership.style.display = "none";
|
||||||
|
|
||||||
purchase1gb.style.display = "none";
|
|
||||||
purchase2gb.style.display = "none";
|
purchase2gb.style.display = "none";
|
||||||
purchase4gb.style.display = "none";
|
purchase4gb.style.display = "none";
|
||||||
purchase8gb.style.display = "none";
|
purchase8gb.style.display = "none";
|
||||||
@ -224,7 +222,6 @@ displayLocationContent = function() {
|
|||||||
purchaseTor.style.display = "none";
|
purchaseTor.style.display = "none";
|
||||||
purchaseHomeRam.style.display = "none";
|
purchaseHomeRam.style.display = "none";
|
||||||
|
|
||||||
purchase1gb.innerHTML = "Purchase 1GB Server - $" + formatNumber(1*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
|
||||||
purchase2gb.innerHTML = "Purchase 2GB Server - $" + formatNumber(2*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
purchase2gb.innerHTML = "Purchase 2GB Server - $" + formatNumber(2*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
||||||
purchase4gb.innerHTML = "Purchase 4GB Server - $" + formatNumber(4*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
purchase4gb.innerHTML = "Purchase 4GB Server - $" + formatNumber(4*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
||||||
purchase8gb.innerHTML = "Purchase 8GB Server - $" + formatNumber(8*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
purchase8gb.innerHTML = "Purchase 8GB Server - $" + formatNumber(8*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
||||||
@ -433,7 +430,6 @@ displayLocationContent = function() {
|
|||||||
securityEngineerJob.style.display = "block";
|
securityEngineerJob.style.display = "block";
|
||||||
networkEngineerJob.style.display = "block";
|
networkEngineerJob.style.display = "block";
|
||||||
|
|
||||||
purchase1gb.style.display = "block";
|
|
||||||
purchase2gb.style.display = "block";
|
purchase2gb.style.display = "block";
|
||||||
purchase4gb.style.display = "block";
|
purchase4gb.style.display = "block";
|
||||||
purchase8gb.style.display = "block";
|
purchase8gb.style.display = "block";
|
||||||
@ -594,7 +590,6 @@ displayLocationContent = function() {
|
|||||||
softwareJob.style.display = "block";
|
softwareJob.style.display = "block";
|
||||||
softwareConsultantJob.style.display = "block";
|
softwareConsultantJob.style.display = "block";
|
||||||
businessJob.style.display = "block";
|
businessJob.style.display = "block";
|
||||||
purchase1gb.style.display = "block";
|
|
||||||
purchase2gb.style.display = "block";
|
purchase2gb.style.display = "block";
|
||||||
purchase4gb.style.display = "block";
|
purchase4gb.style.display = "block";
|
||||||
purchaseTor.style.display = "block";
|
purchaseTor.style.display = "block";
|
||||||
@ -1352,7 +1347,6 @@ initLocationButtons = function() {
|
|||||||
|
|
||||||
var work = document.getElementById("location-work");
|
var work = document.getElementById("location-work");
|
||||||
|
|
||||||
var purchase1gb = document.getElementById("location-purchase-1gb");
|
|
||||||
var purchase2gb = document.getElementById("location-purchase-2gb");
|
var purchase2gb = document.getElementById("location-purchase-2gb");
|
||||||
var purchase4gb = document.getElementById("location-purchase-4gb");
|
var purchase4gb = document.getElementById("location-purchase-4gb");
|
||||||
var purchase8gb = document.getElementById("location-purchase-8gb");
|
var purchase8gb = document.getElementById("location-purchase-8gb");
|
||||||
@ -1448,11 +1442,6 @@ initLocationButtons = function() {
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
purchase1gb.addEventListener("click", function() {
|
|
||||||
purchaseServerBoxCreate(1, 1 * CONSTANTS.BaseCostFor1GBOfRamServer);
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
purchase2gb.addEventListener("click", function() {
|
purchase2gb.addEventListener("click", function() {
|
||||||
purchaseServerBoxCreate(2, 2 * CONSTANTS.BaseCostFor1GBOfRamServer);
|
purchaseServerBoxCreate(2, 2 * CONSTANTS.BaseCostFor1GBOfRamServer);
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user