How much grain can a giant node produce with the production per 25 perk?

[BACK]
How much grain can a giant node produce with the production per 25 perk?
Posted On: June 13, 2023

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.



[BACK]
How much grain can a giant node produce with the production per 25 perk?
Posted On: June 13, 2023

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.



[BACK]

Why is this Electrolyzer and Hydrogen Generator combo unsustainable? Why is this Electrolyzer and Hydrogen Generator combo unsustainable?

Posted On: April 13, 2024
I have this small Electrolyzer + Hydrogen Generator setup in my base:.The Electrolyzer says it generates 112 g/s of Hydrogen, while the Hydrogen Generator states it needs 100g/s of Hydrogen to functio...[More]


In Zelda TOTK, Is there a way to select a material for all arrows? In Zelda TOTK, Is there a way to select a material for all arrows?

Posted On: May 18, 2023
When aiming a bow, pressing ↑ opens the Materials list "Select a material to attach.". Is there a way to avoid having to open this menu for every arrow that you fire, if you wanted t...[More]


How do I transfer the Militech Datashard eddies to myself? How do I transfer the Militech Datashard eddies to myself?

Posted On: December 19, 2023
During one of the early missions in the game, you are tasked with collecting a Flathead robot from a Maelstrom hideout. I resolved the optional objective to chat to Militech about it, and received the...[More]


How do I give players already enchanted Tools - Armour - Weapons How do I give players already enchanted Tools - Armour - Weapons

Posted On: April 26, 2024
I'm making a map where I want players to be able to choose there kits/classes. The problem I'm having with it though is giving players already enchanted Tools/Armour/Weapons.I'm not sure if you can us...[More]


The orgasm of male companions + Raphael The orgasm of male companions + Raphael

Posted On: August 26, 2025
Question from user Ok_Sand_9712 at BaldursGate3 at reddit.com.Answer:https: - - preview.redd.it - r1bf89gu9alf1.jpeg?width=3145&format=pjpg&auto=webp&s=46edebf54fca00d7e6d76d74bb3cf113721f79be.Answer ...[More]


Blue thestral with star symbol next to Hogwarts gender symbol Blue thestral with star symbol next to Hogwarts gender symbol

Posted On: June 8, 2023
So I was trying to catch some thestrals and was under the disillusionment charm waiting. The lonely thestral I was waiting on to come back finally showed up and brought a blue thestral back with it. I...[More]


How do I keep my animals from eating my people food in Rimworld? How do I keep my animals from eating my people food in Rimworld?

Posted On: May 22, 2023
I've got a reasonably flourishing village with decent population and all the amenities. However, lately I've been having severe issues because my tame animals keep breaking into the food wareh...[More]


Is there a way to tell how much extra heal and shield power you have? Is there a way to tell how much extra heal and shield power you have?

Posted On: September 30, 2023
I am playing Soraka in League of Legends and her main role is to heal her allies, so shes buys items to help. Some of the best items for Soraka are items that give more healing power for example the i...[More]


In MoH Allied Assault, can you save Jack Grillo? In MoH Allied Assault, can you save Jack Grillo?

Posted On: March 13, 2023
has anyone confirmed whether it's possible to prevent the death of Maj. Jack Grillo at the start of Mission 2, Scuttling the U-529, Level 1, Secret Documents of the Kriegsmarine? I recently mad...[More]


How many aspects can you hold in your inventory in Diablo 4? How many aspects can you hold in your inventory in Diablo 4?

Posted On: June 14, 2023
How many aspects can you hold in your inventory in Diablo 4? Is there a max? I can't find anything on the internet about this. Question from user Merl at stackexchange. Answer: Aspect ...[More]