mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
Add industrial crucible metal multiplier, reduce goal
This commit is contained in:
parent
4215157a2c
commit
9fcdcfbfc9
1 changed files with 6 additions and 1 deletions
|
@ -40,6 +40,11 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
description: "Crucible",
|
||||
enabled: crucible.bought
|
||||
})),
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: 1.5,
|
||||
description: "Industrial Crucible",
|
||||
enabled: () => Decimal.gte(industrialCrucible.amount.value, 1)
|
||||
})),
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: 2,
|
||||
description: "Industrial Furnace",
|
||||
|
@ -323,7 +328,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
|
||||
const { total: totalMetal, trackerDisplay } = setUpDailyProgressTracker({
|
||||
resource: metal,
|
||||
goal: 50000,
|
||||
goal: 25000,
|
||||
name,
|
||||
day,
|
||||
color,
|
||||
|
|
Loading…
Reference in a new issue