diff --git a/Frontend/src/lib/core/economy.ts b/Frontend/src/lib/core/economy.ts index 4e88c97..3f1f36f 100644 --- a/Frontend/src/lib/core/economy.ts +++ b/Frontend/src/lib/core/economy.ts @@ -683,7 +683,8 @@ export function buyGenerator(state: GameState, genId: string): GameState | null export function getPrestigeThreshold(state: GameState): number { const reduction = getPrestigeThresholdReduction(state.evolutionTree); - return Math.floor(BASE_PRESTIGE_THRESHOLD * (1 - reduction)); + const scaling = Math.pow(1 + 0.1 * state.prestigeCount, 2); + return Math.floor(BASE_PRESTIGE_THRESHOLD * scaling * (1 - reduction)); } export function canPrestige(state: GameState): boolean {