mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
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:
@@ -754,6 +754,8 @@ export function getBitNodeMultipliers(n: number, lvl: number): IBitNodeMultiplie
|
|||||||
CrimeMoney: 0.5,
|
CrimeMoney: 0.5,
|
||||||
ScriptHackMoney: 0.1,
|
ScriptHackMoney: 0.1,
|
||||||
|
|
||||||
|
HacknetNodeMoney: Math.PI,
|
||||||
|
|
||||||
HackExpGain: 0.05,
|
HackExpGain: 0.05,
|
||||||
|
|
||||||
FourSigmaMarketDataCost: 5,
|
FourSigmaMarketDataCost: 5,
|
||||||
@@ -771,7 +773,7 @@ export function getBitNodeMultipliers(n: number, lvl: number): IBitNodeMultiplie
|
|||||||
StaneksGiftPowerMultiplier: 0.5,
|
StaneksGiftPowerMultiplier: 0.5,
|
||||||
StaneksGiftExtraSize: 2,
|
StaneksGiftExtraSize: 2,
|
||||||
|
|
||||||
WorldDaemonDifficulty: 2,
|
WorldDaemonDifficulty: Math.PI,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
case 10: {
|
case 10: {
|
||||||
|
|||||||
@@ -284,8 +284,8 @@ export function prestigeSourceFile(flume: boolean): void {
|
|||||||
|
|
||||||
resetIndustryResearchTrees();
|
resetIndustryResearchTrees();
|
||||||
|
|
||||||
// Source-File 9 (level 3) effect
|
// Source-File 9 (level 3) effect also now applies when in bn9
|
||||||
if (Player.sourceFileLvl(9) >= 3) {
|
if (Player.sourceFileLvl(9) >= 3 || Player.bitNodeN === 9) {
|
||||||
const hserver = Player.createHacknetServer();
|
const hserver = Player.createHacknetServer();
|
||||||
|
|
||||||
hserver.level = 100;
|
hserver.level = 100;
|
||||||
|
|||||||
Reference in New Issue
Block a user