work more on level 6.

This commit is contained in:
trans_soup 2023-10-27 21:12:21 +02:00
parent 0fa9117aa4
commit ca534d91f0

View file

@ -55,20 +55,43 @@ create_level(6, {
// wall patroller // wall patroller
{ {
pos: [15, 295], pos: [0, 0],
size: [30, 10], size: [40, 10],
behaviour: "path", behaviour: "path",
meta: [ meta: [
["points", [ ["points", [
[15, 10], [10, 10],
[15, 580], [10, 580],
[10, 580],
]], ]],
["speeds", [ ["speeds", [
1, 1,
2,
1/4, 1/4,
]], ]],
["offset", 3/4], ["offset", 3/4],
], ],
}, },
// big time limit thing
{
pos: [0, 0],
size: [400, 600],
behaviour: "path",
meta: [
["points", [
[800, 0],
[800, 0],
[400, 0],
]],
["speeds", [
1,
1/100,
0,
]],
["offset", 1],
],
},
], ],
effects: [],
}); });