in progress

This commit is contained in:
evanpelle
2024-12-04 16:46:27 -08:00
parent e068a9afc7
commit 22b877e85c
4 changed files with 78 additions and 61 deletions
+4 -1
View File
@@ -5,9 +5,12 @@ 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) / 100000
info.cost = (p: Player) => oldCost(p) / 1000
return info
}
maxUnitCost(): number {
return 10000
}
percentageTilesOwnedToWin(): number {
return 95