Build
Building takes resources and will help you grow your village. Huts are needed for villagers to move in. Lumber Camps and farms help automate collecting resources.
- Hut
- cost in wood = Max(Max(10, numHuts), 0.2 * # villagers)
- the cost gets more expensive as your village grows.
- houses 5 villagers
- cost in wood = Max(Max(10, numHuts), 0.2 * # villagers)
- Lumber Camp
- cost in wood = Max(Max(50, numHuts * 2), 0.5 * # villagers)
- allows 100 villagers to go logging
- 1 villager logs 0.0000115 wood per second. So with 100 villagers logging you'd gain 4.1 wood per hour
- wood is given to you slowly over time.
- Farm
- cost in wood = Max(Max(25, numHuts), 0.25 * # villagers)
- cost in food = Max(Max(25, numHuts), 0.25 * # villagers)
- allows 100 villagers to go farming
- 1 villager farms 0.0000115 food per second. So with 100 villagers farming you'd gain 4.1 food per hour
- food is given to you slowly over time.