increase effect

This commit is contained in:
unsoftcapped3 2022-12-22 18:36:17 +00:00
parent c13c62045e
commit 57d7b71188
2 changed files with 2 additions and 2 deletions

View file

@ -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
}))

View file

@ -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)