Rebalancing

This commit is contained in:
ducdat0507 2022-12-24 21:02:36 +07:00
parent 65f6732074
commit 891f01813d
2 changed files with 17 additions and 5 deletions

View file

@ -198,7 +198,7 @@ const layer = createLayer(id, () => {
costMulti /= 3;
}
if (elf.name == "Jingle") {
costMulti *= 30;
costMulti *= 100000;
}
const costBase = 4000 * costMulti;
const expRequiredForNextLevel = computed(() => Decimal.pow(5, level.value).mul(costBase));

View file

@ -1138,10 +1138,22 @@ const layer = createLayer(id, function (this: BaseLayer) {
</>
) : (
<>
You're solving {formatWhole(computedMetaSolvingSpeed.value)} cities per
second
<Spacer />
{renderRow(...Object.values(metaBuyables))}
{Decimal.lt(citiesCompleted.value, 50) ? (
<>
You're solving {formatWhole(computedMetaSolvingSpeed.value)} cities
per second
<Spacer />
{renderRow(...Object.values(metaBuyables))}
</>
) : (
<>
You've solved all of cities on Earth!
<br />
<strike style="font-size: smaller">
(and proved the travelling salesman problem to be O(1))
</strike>
</>
)}
<Spacer />
{metaMilestonesDisplay()}
</>