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]

Are there unique weapons - items that must be pickpocketed from NPCs? Are there unique weapons - items that must be pickpocketed from NPCs?

Posted On: April 1, 2024
I'm playing Dragonborn DLC, and I just used my last skill point to unlock Misdirection, a Pickpocket skill that lets me pickpocket equipped weapons.I was pretty lucky because the first time I used it ...[More]


What's your favorite summoner? What's your favorite summoner?

Posted On: July 23, 2024
The ultimate power fantasy in gaming, getting your summons so strong you don't actually have to play the game. What's your favorite summoner setups? Multi or Mono, curious to see how others enjoy the ...[More]


Attempting my first honor mode run Attempting my first honor mode run

Posted On: September 10, 2024
I've beat the game twice on balanced with different party combos and classes to familiarize myself with as much as the game as possible. .My plan for my HM run is:.Spores Druid Tav, OH Monk Karlach (m...[More]


What do the numbers next to the achievements mean in Overwatch? What do the numbers next to the achievements mean in Overwatch?

Posted On: May 18, 2023
Next to each achievement in Overwatch there's a little number in a circle, what does that mean? Question from user Wrigglenite at gaming.stackexchange.com. Answer: The number signifies th...[More]


How can you jump farther in Temple Run? How can you jump farther in Temple Run?

Posted On: August 5, 2023
I'm playing Temple Run for iOS and there are parts where you need to jump really far in order to get over a broken path. Does anyone know how to jump over these tricky parts? Is there a way to ...[More]


What are the benefits and disadvantages of the Global Trust and Eden Initiative factions? What are the benefits and disadvantages of the Global Trust and Eden Initiative factions?

Posted On: March 26, 2024
I always play as the Eden Initiative. Am I missing out on anything by not playing Global Trust?Question from user victoriah at gaming.stackexchange.com.Answer:The Global Trust tends to use much more e...[More]


Does Lore Bard get good at later levels? Does Lore Bard get good at later levels?

Posted On: September 25, 2023
Hey all, I know basically all straight classes end up good enough, but I am trying to decide between a pure sorcerer or pure bard. I have a paladin/warlock sitting at the start of ACT 3 and just got b...[More]


How do I use Artifacts in combat in Neverwinter? How do I use Artifacts in combat in Neverwinter?

Posted On: April 11, 2023
Sorry if this is an obvious question, but I can't find anything online that answers it. You can equip several artifacts on your character sheet. They talk about doing damage to your enemies. How d...[More]


What is the best class to RP as a doctor? What is the best class to RP as a doctor?

Posted On: May 7, 2025
So, I want to try and play as a doctor character but don't know what class would fit them best. Armor wise, I feel like they would only wear clothing and wield a staff. I was thinking cleric could fit...[More]


I am currently missing 6 conjuration pages I am currently missing 6 conjuration pages

Posted On: July 25, 2023
So I have finished everything I possibly can, main story, side quests, friendship quests, collection chests, field guide pages, moth paintings, I mean literally everything I have done. However I am cu...[More]