increase train spawn rate, reduce allied gold to 35M

This commit is contained in:
evanpelle
2025-12-17 09:22:44 -08:00
parent a7b8a1292d
commit b4d20ae67a
+2 -2
View File
@@ -365,12 +365,12 @@ export class DefaultConfig implements Config {
trainSpawnRate(numPlayerFactories: number): number {
// hyperbolic decay, midpoint at 10 factories
// expected number of trains = numPlayerFactories / trainSpawnRate(numPlayerFactories)
return (numPlayerFactories + 10) * 20;
return (numPlayerFactories + 10) * 18;
}
trainGold(rel: "self" | "team" | "ally" | "other"): Gold {
switch (rel) {
case "ally":
return 50_000n;
return 35_000n;
case "team":
case "other":
return 25_000n;