diff --git a/src/data/buildings.ts b/src/data/buildings.ts index a62f82e..80409d1 100644 --- a/src/data/buildings.ts +++ b/src/data/buildings.ts @@ -5,7 +5,7 @@ import type { VillageState } from "../village"; function getStandardTimeToBuild(level: number) { - return Math.round(Math.pow(level, 1 / 1.2) + 1); + return Math.round(Math.pow(level, 1 / 0.8) + 2); }