Article Categories
- Baldur's Gate 3
- Diablo
- Elder Scrolls
- General
- Hogwarts Legacy
- League of Legends
- Minecraft
- Pokemon Go
- Sims 4
- StarCraft
- Steam Platform
- Xbox Game Console
More Articles
How much grain can a giant node produce with the production per 25 perk?

The total amount of stuff from a node can be increased by getting perks. Here are two such perks;.
Mold supply: Increase the production of grain by +1 (or +2).
Grain harvest: Increase the production of grain by +1 for every 25 grain harvested.
For a single small (15) or big (60) node of grain, +2 production beats out +1 per 25 harvested, as the node is mostly empty before it kicks in.
The marshlands though have giant nodes (1,000). It's pretty easy to see that the +1 grain production for every 25 harvested will get you more grain. I was just wondering how much more?
Question from user aphid at stackexchange.
Answer:
The cornerstone is in fact like this:.
Grain production increases by +1 every 25 times it's produced.
That is to say, you get +1 for every 25 times harvested, not for every 25 grains harvested. So the answer by aphid is correct given the question, but it does not correspond to the game mechanic.
Some javascript to simulate:.
let gTotal = 0.
let harvestAmount = 1.
let harvestTimes = 0.
while (harvestTimes < 1007) {.
harvestTimes++.
gTotal = gTotal + harvestAmount.
harvestAmount = Math.floor(1 + harvestTimes / 25).
console.log(`harvestTimes: ${harvestTimes}, totalHarvested: ${gTotal}`).
}.
And you end up with 20787 harvested grains.
Answer from user pgsandstrom at stackexchange.

The total amount of stuff from a node can be increased by getting perks. Here are two such perks;.
Mold supply: Increase the production of grain by +1 (or +2).
Grain harvest: Increase the production of grain by +1 for every 25 grain harvested.
For a single small (15) or big (60) node of grain, +2 production beats out +1 per 25 harvested, as the node is mostly empty before it kicks in.
The marshlands though have giant nodes (1,000). It's pretty easy to see that the +1 grain production for every 25 harvested will get you more grain. I was just wondering how much more?
Question from user aphid at stackexchange.
Answer:
The cornerstone is in fact like this:.
Grain production increases by +1 every 25 times it's produced.
That is to say, you get +1 for every 25 times harvested, not for every 25 grains harvested. So the answer by aphid is correct given the question, but it does not correspond to the game mechanic.
Some javascript to simulate:.
let gTotal = 0.
let harvestAmount = 1.
let harvestTimes = 0.
while (harvestTimes < 1007) {.
harvestTimes++.
gTotal = gTotal + harvestAmount.
harvestAmount = Math.floor(1 + harvestTimes / 25).
console.log(`harvestTimes: ${harvestTimes}, totalHarvested: ${gTotal}`).
}.
And you end up with 20787 harvested grains.
Answer from user pgsandstrom at stackexchange.
What happens if you dont found a religion?
Is it possible to max out both health and stamina in ToTK?
My new shop in Hogwarts Legacy
Why does shift-queuing blink in Starcraft 2 have unpredictable results?
Is it possible to play Battlefront 2 with private servers?
Whats a good strategy to get the Flower Power achievement?
Is there any way to hide your Steam status from others?
How can I install Diablo 3 if I use FileVault?
How to get the Steam Workshop to work with Civilization V for a Mac?


