From c13c62045e162dc51be4e4508cc841af634f20eb Mon Sep 17 00:00:00 2001 From: unsoftcapped3 <75136164+unsoftcapped3@users.noreply.github.com> Date: Thu, 22 Dec 2022 18:30:33 +0000 Subject: [PATCH] reduce milestone reqs --- src/data/layers/toys.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/layers/toys.tsx b/src/data/layers/toys.tsx index 05cde13..64d523a 100644 --- a/src/data/layers/toys.tsx +++ b/src/data/layers/toys.tsx @@ -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 };