Make buildings take longer to build.

This commit is contained in:
Adrian 2024-11-13 16:30:49 +01:00
parent 9062d7b626
commit 933796bb4a

View File

@ -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);
}