mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
generic
This commit is contained in:
parent
5d0a2fa6fb
commit
4156e6cc0e
1 changed files with 3 additions and 3 deletions
|
@ -140,7 +140,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
title: "Carry cloth in boxes",
|
||||
description: "Double all cloth actions"
|
||||
}
|
||||
}));
|
||||
})) as GenericUpgrade;
|
||||
const dyeUpgrade = createUpgrade(() => ({
|
||||
resource: noPersist(boxes),
|
||||
cost: 1e17,
|
||||
|
@ -149,7 +149,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
title: "Carry dye in boxes",
|
||||
description: "Double all dye gain"
|
||||
}
|
||||
}));
|
||||
})) as GenericUpgrade;
|
||||
const xpUpgrade = createUpgrade(() => ({
|
||||
resource: noPersist(boxes),
|
||||
cost: 1e18,
|
||||
|
@ -158,7 +158,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
title: "Carry experience in boxes???",
|
||||
description: "Double xp gain"
|
||||
}
|
||||
}));
|
||||
})) as GenericUpgrade;
|
||||
const row3Upgrades = { clothUpgrade, dyeUpgrade, xpUpgrade };
|
||||
const logBoxesBuyable = createBuyable(() => ({
|
||||
display: {
|
||||
|
|
Loading…
Reference in a new issue