Lower upgrade time curve

This commit is contained in:
Seth Posner 2022-12-01 16:22:27 -08:00
parent 7c029e0e45
commit 5a1df95001

View file

@ -70,7 +70,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const researchUpgrade1 = createUpgrade(() => ({ const researchUpgrade1 = createUpgrade(() => ({
resource: logs, resource: logs,
cost: 100, cost: 40,
display: { display: {
title: "Research I", title: "Research I",
description: "Trees give 25% more logs, and unlock more upgrades" description: "Trees give 25% more logs, and unlock more upgrades"
@ -86,7 +86,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
const manualCutUpgrade2 = createUpgrade(() => ({ const manualCutUpgrade2 = createUpgrade(() => ({
resource: logs, resource: logs,
cost: 100, cost: 50,
visibility: () => showIf(researchUpgrade1.bought.value), visibility: () => showIf(researchUpgrade1.bought.value),
display: { display: {
title: "Sharper Fingers", title: "Sharper Fingers",
@ -95,7 +95,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const manualPlantUpgrade2 = createUpgrade(() => ({ const manualPlantUpgrade2 = createUpgrade(() => ({
resource: logs, resource: logs,
cost: 100, cost: 50,
visibility: () => showIf(researchUpgrade1.bought.value), visibility: () => showIf(researchUpgrade1.bought.value),
display: { display: {
title: "Greener Fingers", title: "Greener Fingers",
@ -104,7 +104,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const manualCutUpgrade3 = createUpgrade(() => ({ const manualCutUpgrade3 = createUpgrade(() => ({
resource: logs, resource: logs,
cost: 300, cost: 150,
visibility: () => showIf(researchUpgrade1.bought.value), visibility: () => showIf(researchUpgrade1.bought.value),
display: { display: {
title: "Smart Knives", title: "Smart Knives",
@ -114,7 +114,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const manualPlantUpgrade3 = createUpgrade(() => ({ const manualPlantUpgrade3 = createUpgrade(() => ({
resource: logs, resource: logs,
cost: 300, cost: 150,
visibility: () => showIf(researchUpgrade1.bought.value), visibility: () => showIf(researchUpgrade1.bought.value),
display: { display: {
title: "Smart Spades", title: "Smart Spades",
@ -124,7 +124,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const researchUpgrade2 = createUpgrade(() => ({ const researchUpgrade2 = createUpgrade(() => ({
resource: logs, resource: logs,
cost: 1000, cost: 300,
visibility: () => showIf(researchUpgrade1.bought.value), visibility: () => showIf(researchUpgrade1.bought.value),
display: { display: {
title: "Research II", title: "Research II",