mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
Rebalance
This commit is contained in:
parent
e82b090d60
commit
6cb3492782
1 changed files with 3 additions and 4 deletions
|
@ -22,8 +22,7 @@ import {
|
|||
createSequentialModifier
|
||||
} from "game/modifiers";
|
||||
import { persistent } from "game/persistence";
|
||||
import player from "game/player";
|
||||
import Decimal, { DecimalSource, format, formatWhole } from "util/bignum";
|
||||
import Decimal, { DecimalSource, format } from "util/bignum";
|
||||
import { Direction } from "util/common";
|
||||
import { joinJSX, render, renderRow } from "util/vue";
|
||||
import { computed, watchEffect } from "vue";
|
||||
|
@ -48,7 +47,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const manualPlantUpgrade1 = createUpgrade(() => ({
|
||||
resource: saplings,
|
||||
cost: 10,
|
||||
cost: 5,
|
||||
display: {
|
||||
title: "Leafy Fingers",
|
||||
description: "Plant an additional tree per click"
|
||||
|
@ -64,7 +63,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const autoPlantUpgrade1 = createUpgrade(() => ({
|
||||
resource: saplings,
|
||||
cost: 25,
|
||||
cost: 10,
|
||||
display: {
|
||||
title: "Automated Spade",
|
||||
description: "Plant a tree every second"
|
||||
|
|
Loading…
Reference in a new issue