fix: raise Sera/Mira/Vex companion unlock thresholds

This commit is contained in:
2026-03-07 16:13:42 -08:00
committed by Naomi Carrigan
parent 4b0945d0f3
commit ad5f2ad226
2 changed files with 5 additions and 3 deletions
@@ -21,6 +21,8 @@ const UNLOCK_LABELS: Record<string, string> = {
const formatThreshold = (type: string, threshold: number): string => {
if (type === "lifetimeGold") {
if (threshold >= 1e18) return `${(threshold / 1e18).toFixed(0)}Qt`;
if (threshold >= 1e15) return `${(threshold / 1e15).toFixed(0)}Q`;
if (threshold >= 1e12) return `${(threshold / 1e12).toFixed(0)}T`;
if (threshold >= 1e9) return `${(threshold / 1e9).toFixed(0)}B`;
if (threshold >= 1e6) return `${(threshold / 1e6).toFixed(0)}M`;