make names bigger, see farther out

This commit is contained in:
evanpelle
2024-09-03 19:28:09 -07:00
parent 1f590d0f4a
commit d4a3774060
4 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -26,12 +26,12 @@ export const devConfig = new class extends DefaultConfig {
return 5000
}
troopAdditionRate(player: Player): number {
let max = Math.sqrt(player.numTilesOwned()) * 2000 + 10000 + 10000
max = Math.min(max, 1_000_000)
// troopAdditionRate(player: Player): number {
// let max = Math.sqrt(player.numTilesOwned()) * 2000 + 10000 + 10000
// max = Math.min(max, 1_000_000)
let toAdd = 10 + (player.troops() + Math.sqrt(player.troops() * player.numTilesOwned())) / 200 * 100
// let toAdd = 10 + (player.troops() + Math.sqrt(player.troops() * player.numTilesOwned())) / 200 * 100
return Math.min(player.troops() + toAdd, max)
}
// return Math.min(player.troops() + toAdd, max)
// }
}