Added new BitNode multiplier, GangKarmaRequirement. Different BitNodes need different amount of negative karma to create a Gang.

This commit is contained in:
Olivier Gagnon
2021-03-23 21:47:47 -04:00
parent 28584c8461
commit 2ac4cd41bb
4 changed files with 17 additions and 2 deletions
+6
View File
@@ -109,6 +109,11 @@ interface IBitNodeMultipliers {
*/
FourSigmaMarketDataCost: number;
/**
* Influences how much negative karma is required to create a gang in this bitnode.
*/
GangKarmaRequirement: number;
/**
* Influences the experienced gained when hacking a server.
*/
@@ -268,4 +273,5 @@ export const BitNodeMultipliers: IBitNodeMultipliers = {
BladeburnerSkillCost: 1,
DaedalusAugsRequirement: 1,
GangKarmaRequirement: 1,
};