Changes

1,366 bytes added ,  17:24, 10 September 2021
no edit summary
Line 56: Line 56:  
::If you'd like to take a look at the sheet, heres the link (you'll have to remove the spaces): docs. google. com/spreadsheets/d/1_qFcwcRTiyfqGdm5LMmG-8MI3woqKowvu-1utmuYe4M/edit?usp=sharing
 
::If you'd like to take a look at the sheet, heres the link (you'll have to remove the spaces): docs. google. com/spreadsheets/d/1_qFcwcRTiyfqGdm5LMmG-8MI3woqKowvu-1utmuYe4M/edit?usp=sharing
 
::[[User:LahaiRoi|LahaiRoi]] ([[User talk:LahaiRoi|talk]]) 17:18, 10 September 2021 (UTC)
 
::[[User:LahaiRoi|LahaiRoi]] ([[User talk:LahaiRoi|talk]]) 17:18, 10 September 2021 (UTC)
 +
 +
:::My numbers are different than what LahaiRoi got. My numbers were all the same as what the page already has for all fertilizers, except the Deluxe. I think the actual formulas are, based on the given code (forgive my pseudo code):
 +
:::<syntaxhighlight>
 +
iridium: gold chance / 2
 +
 +
true gold chance: if( (gold chance * (1 - iridium chance) + iridium chance) < 1)
 +
                    {gold chance * (1 - iridium chance)}
 +
                  else
 +
                    {1 - iridium chance}
 +
 +
silver chance: min(0.75, (gold chance * 2))
 +
 +
true silver chance: if(fertilizer quality == Deluxe)
 +
                      {1 - iridium chance - true gold chance}
 +
                    else if( (silver chance * (1 - iridium chance) * (1 - true gold
 +
                            chance) + iridium chance + true gold chance) < 1 )
 +
                      {silver chance * (1 - iridium chance) * (1 - true gold chance)}
 +
                    else
 +
                      {1 - iridium chance - true gold chance}
 +
 +
normal: 1 - iridium chance - true gold chance - silver chance
 +
</syntaxhighlight>
 +
 +
:::With these formulas I replicated all the numbers in the tables for all the fertilizers, except for the Deluxe fertilizer. I will upload my full tables to this talk page tonight when I have more time.
 +
:::--[[User:APost-It|APost-It]] ([[User talk:APost-It|talk]]) 17:24, 10 September 2021 (UTC)
9

edits