From cefc9f6dbf1f4c62c838c32c69b82f1fbdc13d78 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Thu, 14 Aug 2025 21:39:15 -0700 Subject: [PATCH] update meta --- src/core/configuration/DefaultConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 74090ae39..099e3b441 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -334,7 +334,7 @@ export class DefaultConfig implements Config { return (numPlayerFactories + 5) * 50; } trainGold(isFriendly: boolean): Gold { - return isFriendly ? 100_000n : 50_000n; + return isFriendly ? 50_000n : 10_000n; } trainStationMinRange(): number { @@ -348,7 +348,7 @@ export class DefaultConfig implements Config { } tradeShipGold(dist: number, numPorts: number): Gold { - const baseGold = Math.floor(25_000 + 50 * dist); + const baseGold = Math.floor(15_000 + 30 * dist); const numPortBonus = numPorts - 1; // Hyperbolic decay, midpoint at 5 ports, 3x bonus max. const bonus = 1 + 2 * (numPortBonus / (numPortBonus + 5));