mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-24 09:21:45 +00:00
Buff conversions and xp a bit
This commit is contained in:
parent
66408f2011
commit
f37de454d8
1 changed files with 2 additions and 2 deletions
|
@ -495,7 +495,7 @@ export function createPlane(
|
||||||
const prevGain = previousGain;
|
const prevGain = previousGain;
|
||||||
costFormula = costFormula.add(
|
costFormula = costFormula.add(
|
||||||
computed(() =>
|
computed(() =>
|
||||||
Decimal.sub(n.value, currentN).add(1).times(2).pow10().times(prevGain)
|
Decimal.sub(n.value, currentN).add(1).pow10().times(prevGain)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
const conversion = createCumulativeConversion(() => ({
|
const conversion = createCumulativeConversion(() => ({
|
||||||
|
@ -659,7 +659,7 @@ export function createPlane(
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
previousGain = costFormula.evaluate();
|
previousGain = costFormula.evaluate();
|
||||||
n.value += 3;
|
n.value += 2;
|
||||||
const barColor = getColor([0.64, 0.75, 0.55], random);
|
const barColor = getColor([0.64, 0.75, 0.55], random);
|
||||||
const bar = createBar(() => ({
|
const bar = createBar(() => ({
|
||||||
direction: Direction.Right,
|
direction: Direction.Right,
|
||||||
|
|
Loading…
Reference in a new issue