meta: increase base gold from tradeship 50k=>75k

This commit is contained in:
evanpelle
2026-03-12 21:02:31 -07:00
parent a03791bf19
commit 97fa84732b
+1 -1
View File
@@ -311,7 +311,7 @@ export class DefaultConfig implements Config {
// Sigmoid: concave start, sharp S-curve middle, linear end - heavily punishes trades under range debuff.
const debuff = this.tradeShipShortRangeDebuff();
const baseGold =
50_000 / (1 + Math.exp(-0.03 * (dist - debuff))) + 50 * dist;
75_000 / (1 + Math.exp(-0.03 * (dist - debuff))) + 50 * dist;
const multiplier = this.goldMultiplier();
return BigInt(Math.floor(baseGold * multiplier));
}