From f37de454d82de28e2855e96c7198caa585ef1c30 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 14 May 2023 17:25:30 -0500 Subject: [PATCH] Buff conversions and xp a bit --- src/data/planes.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/planes.tsx b/src/data/planes.tsx index 772080d..515f143 100644 --- a/src/data/planes.tsx +++ b/src/data/planes.tsx @@ -495,7 +495,7 @@ export function createPlane( const prevGain = previousGain; costFormula = costFormula.add( 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(() => ({ @@ -659,7 +659,7 @@ export function createPlane( ) ); previousGain = costFormula.evaluate(); - n.value += 3; + n.value += 2; const barColor = getColor([0.64, 0.75, 0.55], random); const bar = createBar(() => ({ direction: Direction.Right,