Changes

Jump to navigation Jump to search
→‎Radioactive Ore: Fix heading, also add in some numbers for radioactive ore.
Line 35: Line 35:     
===Random ore placement (chooseStoneType)===
 
===Random ore placement (chooseStoneType)===
===Radioactive Ore===
+
====Radioactive Ore====
 
[[File:SDV SC Radioactive.png|300px|thumb|right|Changing distribution of radioactive ore with luck (daily luck and luff buffs).]]
 
[[File:SDV SC Radioactive.png|300px|thumb|right|Changing distribution of radioactive ore with luck (daily luck and luff buffs).]]
 
This will first produce radioactive ore, with the following check:
 
This will first produce radioactive ore, with the following check:
Line 41: Line 41:  
if (this.GetAdditionalDifficulty() > 0 && this.mineLevel % 5 != 0 && this.mineRandom.NextDouble() < (double)this.GetAdditionalDifficulty() * 0.001 + (double)((float)this.mineLevel / 100000f) + Game1.player.team.AverageDailyLuck() / 13.0 + Game1.player.team.AverageLuckLevel() * 0.0001500000071246177)</syntaxhighlight>
 
if (this.GetAdditionalDifficulty() > 0 && this.mineLevel % 5 != 0 && this.mineRandom.NextDouble() < (double)this.GetAdditionalDifficulty() * 0.001 + (double)((float)this.mineLevel / 100000f) + Game1.player.team.AverageDailyLuck() / 13.0 + Game1.player.team.AverageLuckLevel() * 0.0001500000071246177)</syntaxhighlight>
 
For this, the luck boost from the special charm (0.025, contribution to AverageDailyLuck) is equivalent to an additional 192.3 floors (2500/13), and a single point of luck (such as from a food buff) is worth ~15 floors. With the best possible luck 1.35% of stones will be radioactive ore. With the worst possible luck no radioactive ore will appear until floor 550. Also note that radioactive ore will not appear on any floor divisible by 5.
 
For this, the luck boost from the special charm (0.025, contribution to AverageDailyLuck) is equivalent to an additional 192.3 floors (2500/13), and a single point of luck (such as from a food buff) is worth ~15 floors. With the best possible luck 1.35% of stones will be radioactive ore. With the worst possible luck no radioactive ore will appear until floor 550. Also note that radioactive ore will not appear on any floor divisible by 5.
 +
 +
This means that hypothetically with the best possible luck, from floor 98654 onwards, except on floors divisible by 5, the only ore found from random stones would be radioactive ore. With the worst possible luck, this increases to floor 100550.
    
====Metal Ores====
 
====Metal Ores====
73

edits

Navigation menu