bn9 QoL improvements

Increased BN multipliers for HacknetNodeMoney and WorldDaemonDifficulty to PI (3.14159...). This brings WD required hack to 9424.77796076938 (now the 2nd highest ^-^).
Bn9 now starts with the same node bn9.3 rewards (the idea here is it helps showcase the BNs new feature and just speeds up a lot of what made it so slow early on)
This commit is contained in:
Zelow79 2023-02-19 21:14:22 -05:00
parent 6b8ae1b351
commit b950c6540f
2 changed files with 5 additions and 3 deletions

@ -754,6 +754,8 @@ export function getBitNodeMultipliers(n: number, lvl: number): IBitNodeMultiplie
CrimeMoney: 0.5,
ScriptHackMoney: 0.1,
HacknetNodeMoney: Math.PI,
HackExpGain: 0.05,
FourSigmaMarketDataCost: 5,
@ -771,7 +773,7 @@ export function getBitNodeMultipliers(n: number, lvl: number): IBitNodeMultiplie
StaneksGiftPowerMultiplier: 0.5,
StaneksGiftExtraSize: 2,
WorldDaemonDifficulty: 2,
WorldDaemonDifficulty: Math.PI,
});
}
case 10: {

@ -284,8 +284,8 @@ export function prestigeSourceFile(flume: boolean): void {
resetIndustryResearchTrees();
// Source-File 9 (level 3) effect
if (Player.sourceFileLvl(9) >= 3) {
// Source-File 9 (level 3) effect also now applies when in bn9
if (Player.sourceFileLvl(9) >= 3 || Player.bitNodeN === 9) {
const hserver = Player.createHacknetServer();
hserver.level = 100;