mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
increase effect
This commit is contained in:
parent
c13c62045e
commit
57d7b71188
2 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ const factory = createLayer(id, () => {
|
|||
description: "Coal Energy Production"
|
||||
})),
|
||||
createMultiplicativeModifier(()=>({
|
||||
multiplier: 1.2,
|
||||
multiplier: 1.4,
|
||||
description: "2000 toys",
|
||||
enabled: toys.milestones.milestone6.earned
|
||||
}))
|
||||
|
|
|
@ -272,7 +272,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
const milestone6 = createMilestone(() => ({
|
||||
display: {
|
||||
requirement: "1500 toys",
|
||||
effectDisplay: "Running out of energy? Let's increase the limit! Multiply energy capacity by 1.2"
|
||||
effectDisplay: "Running out of energy? Let's increase the limit! Multiply energy capacity by 1.4"
|
||||
},
|
||||
shouldEarn: () => Decimal.gte(toySum.value, 1500),
|
||||
visibility: () => showIf(milestone5.earned.value)
|
||||
|
|
Loading…
Reference in a new issue