make trains & trade ships more frequent

This commit is contained in:
evanpelle
2025-08-15 18:35:15 -07:00
parent 214c664d8b
commit 3b72cb3114
+2 -2
View File
@@ -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 + 5) * 50;
return (numPlayerFactories + 10) * 30;
}
trainGold(rel: "self" | "friendly" | "other"): Gold {
switch (rel) {
@@ -370,7 +370,7 @@ export class DefaultConfig implements Config {
this.tradeShipPortMultiplier(numPlayerPorts),
);
return Math.floor(20 / combined);
return Math.floor(15 / combined);
}
private tradeShipBaseSpawn(numTradeShips: number): number {