aqualogue/data/LevelDatabase.js

111 lines
2.5 KiB
JavaScript
Raw Normal View History

2016-05-07 10:30:18 -05:00
LevelDatabase = {
"Test Level": {
axes: [
{
x: 768, y: 768,
radius: -256,
angle: 180,
length: 360,
// Multiple switches are [bottom switch, boundary, middle switch, boundary, top switch]
left: [4],
right: [1]
},
{
x: 1152, y: 768,
radius: 128,
angle: 180,
length: 180,
// Multiple switches are [bottom switch, boundary, middle switch, boundary, top switch]
left: [0],
right: [2]
},
{
x: 1280, y: 768,
radius: 0,
angle: 270,
length: 512,
// Multiple switches are [bottom switch, boundary, middle switch, boundary, top switch]
left: [1],
right: [3]
},
{
x: 1152, y: 1280,
radius: 128,
angle: 0,
length: 180,
// Multiple switches are [bottom switch, boundary, middle switch, boundary, top switch]
left: [2],
right: [4]
},
{
x: 1024, y: 1280,
radius: 0,
angle: 90,
length: 512,
// Multiple switches are [bottom switch, boundary, middle switch, boundary, top switch]
left: [3],
right: [0]
}
],
rocks: [
2016-05-08 18:26:36 -05:00
{x: 768, y: 798, z: 80, type: "small"},
{x: 738, y: 768, z: 80, type: "large"},
{x: 768, y: 738, z: 80, type: "small"},
{x: 798, y: 768, z: 80, type: "large"},
2016-05-07 10:30:18 -05:00
2016-05-08 18:26:36 -05:00
{x: 1536, y: 798, z: 80, type: "small"},
{x: 1506, y: 768, z: 80, type: "large"},
{x: 1536, y: 738, z: 80, type: "small"},
{x: 1566, y: 768, z: 80, type: "large"},
2016-05-08 18:26:36 -05:00
{x: 768, y: 1298, z: 80, type: "small"},
{x: 738, y: 1268, z: 80, type: "large"},
{x: 768, y: 1238, z: 80, type: "small"},
{x: 798, y: 1268, z: 80, type: "large"},
2016-05-08 18:26:36 -05:00
{x: 1536, y: 1298, z: 80, type: "small"},
{x: 1506, y: 1268, z: 80, type: "large"},
{x: 1536, y: 1238, z: 80, type: "small"},
{x: 1566, y: 1268, z: 80, type: "large"},
2016-05-07 12:54:40 -05:00
2016-05-08 18:26:36 -05:00
{x: 1024, y: 1024, z: -50, type: "large"},
2016-05-08 19:06:00 -05:00
{x: 1024, y: 1024, z: 50, type: "large"},
{x: 1024, y: 896, z: 30, type: "small"},
{x: 1024, y: 832, z: 30, type: "small"},
{x: 1024, y: 864, z: 62, type: "small"},
{x: 1024, y: 864, z: -2, type: "small"},
{x: 1024, y: 836, z: 58, type: "small"},
{x: 1024, y: 836, z: 2, type: "small"},
{x: 1024, y: 892, z: 58, type: "small"},
{x: 1024, y: 892, z: 2, type: "small"},
{x: 996, y: 864, z: 30, type: "small"},
2016-05-07 10:30:18 -05:00
],
keys: [
{x: 1024, y: 864, z: 30, color: "red"},
{x: 768, y: 768, z: 150, color: "blue"},
2016-05-09 21:40:52 -05:00
{x: 1024, y: 1024, z: 130, color: "white"},
],
doors: [
{x: 1024, y: 960, z: 32, color: "blue"},
],
2016-05-07 10:30:18 -05:00
spawn: {
axis: 0,
position: 1,
z: 0
}
}
};