mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 17:31:54 +00:00
change box upgrade costs
This commit is contained in:
parent
9bd5056e89
commit
7a2cf6192c
1 changed files with 3 additions and 3 deletions
|
@ -166,7 +166,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
const row2Upgrades = { oreUpgrade, metalUpgrade, plasticUpgrade };
|
||||
const clothUpgrade = createUpgrade(() => ({
|
||||
resource: noPersist(boxes),
|
||||
cost: 1e16,
|
||||
cost: 1e28,
|
||||
visibility: () => showIf(management.elfTraining.boxElfTraining.milestones[4].earned.value),
|
||||
display: {
|
||||
title: "Carry cloth in boxes",
|
||||
|
@ -175,7 +175,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
})) as GenericUpgrade;
|
||||
const dyeUpgrade = createUpgrade(() => ({
|
||||
resource: noPersist(boxes),
|
||||
cost: 1e17,
|
||||
cost: 1e30,
|
||||
visibility: () => showIf(management.elfTraining.boxElfTraining.milestones[4].earned.value),
|
||||
display: {
|
||||
title: "Carry dye in boxes",
|
||||
|
@ -190,7 +190,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
})) as GenericUpgrade;
|
||||
const xpUpgrade = createUpgrade(() => ({
|
||||
resource: noPersist(boxes),
|
||||
cost: 1e18,
|
||||
cost: 1e32,
|
||||
visibility: () => showIf(management.elfTraining.boxElfTraining.milestones[4].earned.value),
|
||||
display: {
|
||||
title: "Carry experience in boxes???",
|
||||
|
|
Loading…
Reference in a new issue