rebalance unit cost

This commit is contained in:
evanpelle
2024-12-10 20:28:39 -08:00
committed by Evan
parent d290054e5c
commit 63b0e89d8b
7 changed files with 183 additions and 72 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ export const devConfig = new class extends DefaultConfig {
unitInfo(type: UnitType): UnitInfo {
const info = super.unitInfo(type)
const oldCost = info.cost
info.cost = (p: Player) => oldCost(p) / 1000
// info.cost = (p: Player) => oldCost(p) / 1000
return info
}
maxUnitCost(): number {