mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
Carol cooldown modifiers
This commit is contained in:
parent
a39508b9b2
commit
172233328e
1 changed files with 18 additions and 1 deletions
|
@ -420,7 +420,24 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
}))
|
||||
]);
|
||||
|
||||
const dyeCooldown = createSequentialModifier(() => []);
|
||||
const dyeCooldown = createSequentialModifier(() => [
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: 2,
|
||||
description: "6 Elves Trained",
|
||||
enabled: elvesMilestone.earned
|
||||
})),
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: () =>
|
||||
Decimal.times(paper.books.primaryDyeBook.totalAmount.value, 0.1).add(1),
|
||||
description: "Arts and Crafts",
|
||||
enabled: () => Decimal.gt(paper.books.primaryDyeBook.totalAmount.value, 0)
|
||||
})),
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: 2,
|
||||
description: "10 Elves Trained",
|
||||
enabled: elvesMilestone2.earned
|
||||
}))
|
||||
]);
|
||||
|
||||
const [generalTab, generalTabCollapsed] = createCollapsibleModifierSections(() => [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue