diff --git a/src/js/changelog.js b/src/js/changelog.js index 34daacb3..87dc357b 100644 --- a/src/js/changelog.js +++ b/src/js/changelog.js @@ -8,6 +8,7 @@ export const CHANGELOG = [ "Allow changing all keybindings, including CTRL, ALT and SHIFT (by Dimava)", "Added confirmation when deleting more than 500 buildings at a time", "Added background to toolbar to increase contrast", + "Further decrease requirements of first levels", "Allow placing extractors anywhere again, but they don't work at all if not placed on a resource", "Fix cycling through keybindings selecting locked buildings as well (by Dimava)", "There is now a github action, checking all pull requests with eslint. (by mrHedgehog)", diff --git a/src/js/game/tutorial_goals.js b/src/js/game/tutorial_goals.js index b2f5b0ef..331ace0e 100644 --- a/src/js/game/tutorial_goals.js +++ b/src/js/game/tutorial_goals.js @@ -34,7 +34,7 @@ export const tutorialGoals = [ // Circle { shape: "CuCuCuCu", // belts t1 - required: 35, + required: 20, reward: enumHubGoalRewards.reward_cutter_and_trash, }, @@ -42,7 +42,7 @@ export const tutorialGoals = [ // Cutter { shape: "----CuCu", // - required: 50, + required: 40, reward: enumHubGoalRewards.no_reward, }, @@ -57,7 +57,7 @@ export const tutorialGoals = [ // 4 { shape: "RuRu----", // processors t2 - required: 150, + required: 120, reward: enumHubGoalRewards.reward_rotater, }, @@ -72,7 +72,7 @@ export const tutorialGoals = [ // 6 { shape: "Cu------", // miners t2 - required: 700, + required: 500, reward: enumHubGoalRewards.reward_painter, }, @@ -80,14 +80,14 @@ export const tutorialGoals = [ // Painter { shape: "CrCrCrCr", // unused - required: 1300, + required: 1000, reward: enumHubGoalRewards.reward_rotater_ccw, }, // 8 { shape: "RbRb----", // painter t2 - required: 2500, + required: 1500, reward: enumHubGoalRewards.reward_mixer, }, @@ -95,7 +95,7 @@ export const tutorialGoals = [ // Mixing (purple) { shape: "CpCpCpCp", // belts t3 - required: 4000, + required: 2500, reward: enumHubGoalRewards.reward_splitter_compact, },