IPVGO: Improve favor gain from wins to balance around the rep value of favor (#2131)

This commit is contained in:
Michael Ficocelli
2025-05-17 05:36:58 -04:00
committed by GitHub
parent 2b8c008be1
commit 4749acdd4f
19 changed files with 79 additions and 51 deletions

View File

@@ -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;
};