eternaldensity / Sandcastle-Builder

xkcd: 1190: Time: The Game
Other
79 stars 65 forks source link

Chthonism cannot be unlocked #1436

Open ArcticAlphorn opened 8 years ago

ArcticAlphorn commented 8 years ago

One of the requirements for Chthonism to unlock (in Molpy.Annihilate) is Molpy.CoalToAdd > 338371000.

var min = 1e-12;
var max = 0.524371863;
unrar = (unrar<min)? Math.max(min, unrar): (unrar>max)? Math.min(max, unrar): unrar;
var i = Math.abs(Math.pow(Math.log10(unrar)/7,7)*7777);
Molpy.CoalToAdd = Math.max(Math.floor(i),1);

The highest possible result (with unrar = 1e-12) is 338372, which looks an awful lot like the unlock requirement, except it's off by three orders of magnitude.