work more on level 6.
This commit is contained in:
parent
0fa9117aa4
commit
ca534d91f0
1 changed files with 27 additions and 4 deletions
|
@ -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: [],
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue