I've tried several different formulas based on the wiki's information but they all come out to (the same) ludicrous number that doesnt materialize in game.
Code: Select all
richness = 1000
cycles = richness * 75
output = 0
print("Cycles = " + "{:,}".format(cycles))
while cycles > 750:
    i = 75
    while i > 0:
        output += 1*richness
        i -= 1
        cycles -= 1
    richness -= 1
print("{:,}".format(output))
Any insight?



