Made BN12 difficulty scale faster

This commit is contained in:
Olivier Gagnon 2018-07-27 14:41:13 -04:00 committed by GitHub
parent b0aea99656
commit 59160f1f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -357,8 +357,8 @@ function initBitNodeMultipliers() {
sf12Lvl = Player.sourceFiles[i].lvl; sf12Lvl = Player.sourceFiles[i].lvl;
} }
} }
var inc = Math.pow(1.01, sf12Lvl); var inc = Math.pow(1.02, sf12Lvl);
var dec = Math.pow(0.99, sf12Lvl); var dec = Math.pow(0.98, sf12Lvl);
BitNodeMultipliers.HackingLevelMultiplier = dec; BitNodeMultipliers.HackingLevelMultiplier = dec;
BitNodeMultipliers.ServerMaxMoney = dec; BitNodeMultipliers.ServerMaxMoney = dec;
@ -392,6 +392,10 @@ function initBitNodeMultipliers() {
BitNodeMultipliers.InfiltrationRep = dec; BitNodeMultipliers.InfiltrationRep = dec;
BitNodeMultipliers.CorporationValuation = dec; BitNodeMultipliers.CorporationValuation = dec;
BitNodeMultipliers.BladeburnerRank = dec;
// verify what happens to non-integer values of BladeburnerSkillCost before enabling this.
//BitNodeMultipliers.BladeburnerSkillCost = dec;
break; break;
default: default:
console.log("WARNING: Player.bitNodeN invalid"); console.log("WARNING: Player.bitNodeN invalid");