mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 09:21:48 +00:00
reduce milestone reqs
This commit is contained in:
parent
3c6d86bd78
commit
c13c62045e
1 changed files with 4 additions and 4 deletions
|
@ -262,19 +262,19 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}));
|
||||
const milestone5 = createMilestone(() => ({
|
||||
display: {
|
||||
requirement: "1000 toys",
|
||||
requirement: "750 toys",
|
||||
effectDisplay: "The wheel crafter now makes 2 wheels instead of 1! Now you should be able to fit everything in the factory."
|
||||
},
|
||||
shouldEarn: () => Decimal.gte(toySum.value, 1000),
|
||||
shouldEarn: () => Decimal.gte(toySum.value, 750),
|
||||
visibility: () => showIf(milestone4.earned.value)
|
||||
}));
|
||||
|
||||
const milestone6 = createMilestone(() => ({
|
||||
display: {
|
||||
requirement: "2000 toys",
|
||||
requirement: "1500 toys",
|
||||
effectDisplay: "Running out of energy? Let's increase the limit! Multiply energy capacity by 1.2"
|
||||
},
|
||||
shouldEarn: () => Decimal.gte(toySum.value, 2000),
|
||||
shouldEarn: () => Decimal.gte(toySum.value, 1500),
|
||||
visibility: () => showIf(milestone5.earned.value)
|
||||
}));
|
||||
const milestones = { milestone1, milestone2, milestone3, milestone4, milestone5, milestone6 };
|
||||
|
|
Loading…
Reference in a new issue