1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
export const scenarios = [
{
level: 0,
items: {
log: 2,
},
goal: ['chest'],
time: _ => 10,
},
{
level: 5,
items: {
plank: 7,
cobble: 6,
dust: 8,
ingot: 4,
},
goal: ['piston'],
time: d => 15 - d,
},
{
level: 10,
items: {
log: 2,
cobble: 4,
dust: 2,
ingot: 1,
},
goal: ['piston'],
time: d => 15 - d,
},
{
level: 13,
items: {
log: 8,
},
goal: ['pickaxe'],
time: d => 15 - d,
},
{
level: 18,
items: {
ingot: 8,
plank: 8,
},
goal: ['hopper'],
time: d => 20 - d,
},
{
level: 21,
items: {
ingot: 12,
log: 3,
},
goal: ['hopper'],
time: d => 20 - d,
},
{
level: 25,
items: {
ingot: 24,
},
goal: ['helmet', 'chestplate', 'leggings', 'boots'],
time: d => 18 - d,
},
{
level: 30,
items: {
ingot: 28,
log: 1,
string: 3,
},
goal: ['helmet', 'chestplate', 'leggings', 'boots', 'bow'],
time: d => 30 - d,
},
{
level: 35,
items: {
ingot: 24,
log: 1,
string: 3,
gold: 64,
dust: 17,
},
goal: ['helmet', 'chestplate', 'leggings', 'boots', 'bow'],
time: _ => 15,
},
{
level: 40,
items: {
ingot: 24,
log: 1,
string: 3,
gold: 63,
dust: 15,
},
goal: ['helmet', 'chestplate', 'leggings', 'boots', 'bow'],
time: _ => 15,
},
];
|