mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 08:12:41 +00:00
Rebalancing
This commit is contained in:
parent
65f6732074
commit
891f01813d
2 changed files with 17 additions and 5 deletions
|
@ -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));
|
||||
|
|
|
@ -1138,10 +1138,22 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
</>
|
||||
) : (
|
||||
<>
|
||||
You're solving {formatWhole(computedMetaSolvingSpeed.value)} cities per
|
||||
second
|
||||
{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()}
|
||||
</>
|
||||
|
|
Loading…
Reference in a new issue