From 4e41b4b3b6ca1f75ba3e2ecde34085638ea907f2 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Fri, 15 Aug 2025 19:07:59 -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 a05d6b8d7..d5b9cba79 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -331,7 +331,7 @@ export class DefaultConfig implements Config { trainSpawnRate(numPlayerFactories: number): number { // hyperbolic decay, midpoint at 5 factories // expected number of trains = numPlayerFactories / trainSpawnRate(numPlayerFactories) - return (numPlayerFactories + 7) * 25; + return (numPlayerFactories + 10) * 15; } trainGold(rel: "self" | "friendly" | "other"): Gold { switch (rel) { @@ -355,7 +355,7 @@ export class DefaultConfig implements Config { } tradeShipGold(dist: number, numPorts: number): Gold { - const baseGold = Math.floor(15_000 + 30 * dist); + const baseGold = Math.floor(25_000 + 50 * dist); const numPortBonus = numPorts - 1; // Hyperbolic decay, midpoint at 5 ports, 3x bonus max. const bonus = 1 + 2 * (numPortBonus / (numPortBonus + 5));