mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-25 01:41:48 +00:00
Lower upgrade time curve
This commit is contained in:
parent
7c029e0e45
commit
5a1df95001
1 changed files with 6 additions and 6 deletions
|
@ -70,7 +70,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const researchUpgrade1 = createUpgrade(() => ({
|
||||
resource: logs,
|
||||
cost: 100,
|
||||
cost: 40,
|
||||
display: {
|
||||
title: "Research I",
|
||||
description: "Trees give 25% more logs, and unlock more upgrades"
|
||||
|
@ -86,7 +86,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
|
||||
const manualCutUpgrade2 = createUpgrade(() => ({
|
||||
resource: logs,
|
||||
cost: 100,
|
||||
cost: 50,
|
||||
visibility: () => showIf(researchUpgrade1.bought.value),
|
||||
display: {
|
||||
title: "Sharper Fingers",
|
||||
|
@ -95,7 +95,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const manualPlantUpgrade2 = createUpgrade(() => ({
|
||||
resource: logs,
|
||||
cost: 100,
|
||||
cost: 50,
|
||||
visibility: () => showIf(researchUpgrade1.bought.value),
|
||||
display: {
|
||||
title: "Greener Fingers",
|
||||
|
@ -104,7 +104,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const manualCutUpgrade3 = createUpgrade(() => ({
|
||||
resource: logs,
|
||||
cost: 300,
|
||||
cost: 150,
|
||||
visibility: () => showIf(researchUpgrade1.bought.value),
|
||||
display: {
|
||||
title: "Smart Knives",
|
||||
|
@ -114,7 +114,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const manualPlantUpgrade3 = createUpgrade(() => ({
|
||||
resource: logs,
|
||||
cost: 300,
|
||||
cost: 150,
|
||||
visibility: () => showIf(researchUpgrade1.bought.value),
|
||||
display: {
|
||||
title: "Smart Spades",
|
||||
|
@ -124,7 +124,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const researchUpgrade2 = createUpgrade(() => ({
|
||||
resource: logs,
|
||||
cost: 1000,
|
||||
cost: 300,
|
||||
visibility: () => showIf(researchUpgrade1.bought.value),
|
||||
display: {
|
||||
title: "Research II",
|
||||
|
|
Loading…
Reference in a new issue