mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
reduce xp scaling
This commit is contained in:
parent
e904e9da5c
commit
40ff736e65
1 changed files with 3 additions and 3 deletions
|
@ -147,16 +147,16 @@ const layer = createLayer(id, () => {
|
|||
costMulti /= 3;
|
||||
}
|
||||
const expRequiredForNextLevel = computed(() =>
|
||||
Decimal.pow(10, level.value).mul(4000).mul(costMulti)
|
||||
Decimal.pow(5, level.value).mul(4000).mul(costMulti)
|
||||
);
|
||||
const level = computed(() =>
|
||||
Decimal.min(
|
||||
Decimal.mul(9, exp.value).div(4000).div(costMulti).add(1).log10().floor(),
|
||||
Decimal.mul(9, exp.value).div(4000).div(costMulti).add(1).log(5).floor(),
|
||||
schools.amount.value
|
||||
).toNumber()
|
||||
);
|
||||
const expToNextLevel = computed(() =>
|
||||
Decimal.sub(exp.value, Decimal.pow(10, level.value).sub(1).div(9).mul(4000))
|
||||
Decimal.sub(exp.value, Decimal.pow(5, level.value).sub(1).div(9).mul(4000))
|
||||
);
|
||||
const bar = createBar(() => ({
|
||||
direction: Direction.Right,
|
||||
|
|
Loading…
Reference in a new issue