mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 07:18:38 +02:00
IPVGO: Improve favor gain from wins to balance around the rep value of favor (#2131)
This commit is contained in:
committed by
GitHub
parent
2b8c008be1
commit
4749acdd4f
9
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
9
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -4442,12 +4442,19 @@ type GoOpponent =
|
||||
|
||||
/** @public */
|
||||
type SimpleOpponentStats = {
|
||||
/** Number of wins since last reset */
|
||||
wins: number;
|
||||
/** Number of losses since last reset*/
|
||||
losses: number;
|
||||
/** Current winstreak */
|
||||
winStreak: number;
|
||||
/** Highest winstreak since last reset*/
|
||||
highestWinStreak: number;
|
||||
favor: number;
|
||||
/** Favor gain from winstreaks, calculated as converted rep */
|
||||
rep: number;
|
||||
/** Stat boost*/
|
||||
bonusPercent: number;
|
||||
/** Description of stat boost */
|
||||
bonusDescription: string;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user