mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 08:31:35 +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",
|
title: "Carry cloth in boxes",
|
||||||
description: "Double all cloth actions"
|
description: "Double all cloth actions"
|
||||||
}
|
}
|
||||||
}));
|
})) as GenericUpgrade;
|
||||||
const dyeUpgrade = createUpgrade(() => ({
|
const dyeUpgrade = createUpgrade(() => ({
|
||||||
resource: noPersist(boxes),
|
resource: noPersist(boxes),
|
||||||
cost: 1e17,
|
cost: 1e17,
|
||||||
|
@ -149,7 +149,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
title: "Carry dye in boxes",
|
title: "Carry dye in boxes",
|
||||||
description: "Double all dye gain"
|
description: "Double all dye gain"
|
||||||
}
|
}
|
||||||
}));
|
})) as GenericUpgrade;
|
||||||
const xpUpgrade = createUpgrade(() => ({
|
const xpUpgrade = createUpgrade(() => ({
|
||||||
resource: noPersist(boxes),
|
resource: noPersist(boxes),
|
||||||
cost: 1e18,
|
cost: 1e18,
|
||||||
|
@ -158,7 +158,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
title: "Carry experience in boxes???",
|
title: "Carry experience in boxes???",
|
||||||
description: "Double xp gain"
|
description: "Double xp gain"
|
||||||
}
|
}
|
||||||
}));
|
})) as GenericUpgrade;
|
||||||
const row3Upgrades = { clothUpgrade, dyeUpgrade, xpUpgrade };
|
const row3Upgrades = { clothUpgrade, dyeUpgrade, xpUpgrade };
|
||||||
const logBoxesBuyable = createBuyable(() => ({
|
const logBoxesBuyable = createBuyable(() => ({
|
||||||
display: {
|
display: {
|
||||||
|
|
Loading…
Reference in a new issue