feat: add endgame prestige and gold milestone achievements (#183, #185)
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m4s
CI / Lint, Build & Test (pull_request) Successful in 1m13s

- Add prestige milestones at P50/P100/P150/P200 (10k/25k/50k/100k crystals)
- Add gold milestones at 1e30/1e60/1e90 (Cosmic Wealthy, Infinite Hoarder, Omniversal Tycoon)
This commit is contained in:
2026-03-31 17:42:54 -07:00
committed by Naomi Carrigan
parent 34f2b250f3
commit 2827ddef72
2 changed files with 65 additions and 2 deletions
+2 -2
View File
@@ -476,8 +476,8 @@ export const computeProjectedRunestones = (state: GameState): number => {
? 1.5
: 1;
const runestoneMult = gain1Mult * gain2Mult;
/* eslint-disable-next-line @typescript-eslint/no-unsafe-assignment -- optional chained game state field */
const echoMult: number = state.transcendence?.echoPrestigeRunestoneMultiplier ?? 1;
const echoMult: number
= state.transcendence?.echoPrestigeRunestoneMultiplier ?? 1;
return Math.floor(base * runestoneMult * echoMult);
};