mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-03 10:40:48 +00:00
increase train spawn rate, reduce allied gold to 35M
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user