mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +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;
|
costMulti /= 3;
|
||||||
}
|
}
|
||||||
if (elf.name == "Jingle") {
|
if (elf.name == "Jingle") {
|
||||||
costMulti *= 30;
|
costMulti *= 100000;
|
||||||
}
|
}
|
||||||
const costBase = 4000 * costMulti;
|
const costBase = 4000 * costMulti;
|
||||||
const expRequiredForNextLevel = computed(() => Decimal.pow(5, level.value).mul(costBase));
|
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
|
{Decimal.lt(citiesCompleted.value, 50) ? (
|
||||||
second
|
<>
|
||||||
|
You're solving {formatWhole(computedMetaSolvingSpeed.value)} cities
|
||||||
|
per second
|
||||||
<Spacer />
|
<Spacer />
|
||||||
{renderRow(...Object.values(metaBuyables))}
|
{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 />
|
<Spacer />
|
||||||
{metaMilestonesDisplay()}
|
{metaMilestonesDisplay()}
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in a new issue