added new mechanic that allows the wd to be stronger

This commit is contained in:
Olivier Gagnon
2021-11-20 01:30:45 -05:00
parent 3ab3106634
commit faa9b87733
7 changed files with 20 additions and 9 deletions
+7
View File
@@ -227,6 +227,11 @@ interface IBitNodeMultipliers {
*/
StaneksGiftExtraSize: number;
/**
* Influences the hacking skill required to backdoor the world daemon.
*/
WorldDaemonDifficulty: number;
// Index signature
[key: string]: number;
}
@@ -295,4 +300,6 @@ export const BitNodeMultipliers: IBitNodeMultipliers = {
StaneksGiftPowerMultiplier: 1,
StaneksGiftExtraSize: 0,
WorldDaemonDifficulty: 1,
};