feat(shop): change DOLLARS_PER_HOUR from 5 to 4

This commit is contained in:
End Nightshade 2026-02-19 09:45:18 -07:00
parent 5e445cbf9c
commit 0ed253ed99
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ import { userBonusesTable } from "../schemas/users";
export const PHI = (1 + Math.sqrt(5)) / 2;
export const MULTIPLIER = 10;
export const SCRAPS_PER_HOUR = PHI * MULTIPLIER;
export const DOLLARS_PER_HOUR = 5;
export const DOLLARS_PER_HOUR = 4;
export const SCRAPS_PER_DOLLAR = SCRAPS_PER_HOUR / DOLLARS_PER_HOUR;
export const TIER_MULTIPLIERS: Record<number, number> = {

View file

@ -86,7 +86,7 @@
const PHI = (1 + Math.sqrt(5)) / 2;
const SCRAPS_PER_HOUR = PHI * 10;
const DOLLARS_PER_HOUR = 5;
const DOLLARS_PER_HOUR = 4;
const SCRAPS_PER_DOLLAR = SCRAPS_PER_HOUR / DOLLARS_PER_HOUR;
// Must match backend calculateRollCost exactly