Decrease requirements of first levels

This commit is contained in:
tobspr 2020-05-28 10:00:53 +02:00
parent e219802305
commit f33473b77a
2 changed files with 8 additions and 7 deletions

View File

@ -8,6 +8,7 @@ export const CHANGELOG = [
"Allow changing all keybindings, including CTRL, ALT and SHIFT (by Dimava)", "Allow changing all keybindings, including CTRL, ALT and SHIFT (by Dimava)",
"Added confirmation when deleting more than 500 buildings at a time", "Added confirmation when deleting more than 500 buildings at a time",
"Added background to toolbar to increase contrast", "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", "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)", "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)", "There is now a github action, checking all pull requests with eslint. (by mrHedgehog)",

View File

@ -34,7 +34,7 @@ export const tutorialGoals = [
// Circle // Circle
{ {
shape: "CuCuCuCu", // belts t1 shape: "CuCuCuCu", // belts t1
required: 35, required: 20,
reward: enumHubGoalRewards.reward_cutter_and_trash, reward: enumHubGoalRewards.reward_cutter_and_trash,
}, },
@ -42,7 +42,7 @@ export const tutorialGoals = [
// Cutter // Cutter
{ {
shape: "----CuCu", // shape: "----CuCu", //
required: 50, required: 40,
reward: enumHubGoalRewards.no_reward, reward: enumHubGoalRewards.no_reward,
}, },
@ -57,7 +57,7 @@ export const tutorialGoals = [
// 4 // 4
{ {
shape: "RuRu----", // processors t2 shape: "RuRu----", // processors t2
required: 150, required: 120,
reward: enumHubGoalRewards.reward_rotater, reward: enumHubGoalRewards.reward_rotater,
}, },
@ -72,7 +72,7 @@ export const tutorialGoals = [
// 6 // 6
{ {
shape: "Cu------", // miners t2 shape: "Cu------", // miners t2
required: 700, required: 500,
reward: enumHubGoalRewards.reward_painter, reward: enumHubGoalRewards.reward_painter,
}, },
@ -80,14 +80,14 @@ export const tutorialGoals = [
// Painter // Painter
{ {
shape: "CrCrCrCr", // unused shape: "CrCrCrCr", // unused
required: 1300, required: 1000,
reward: enumHubGoalRewards.reward_rotater_ccw, reward: enumHubGoalRewards.reward_rotater_ccw,
}, },
// 8 // 8
{ {
shape: "RbRb----", // painter t2 shape: "RbRb----", // painter t2
required: 2500, required: 1500,
reward: enumHubGoalRewards.reward_mixer, reward: enumHubGoalRewards.reward_mixer,
}, },
@ -95,7 +95,7 @@ export const tutorialGoals = [
// Mixing (purple) // Mixing (purple)
{ {
shape: "CpCpCpCp", // belts t3 shape: "CpCpCpCp", // belts t3
required: 4000, required: 2500,
reward: enumHubGoalRewards.reward_splitter_compact, reward: enumHubGoalRewards.reward_splitter_compact,
}, },