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
|
[
{
"file": "test.schematic",
"name": "testmap",
"players": 4,
"spawn": [ 2, 1, 2 ],
"pointMultiplier": 1.0,
"mobs": [
{
"position": [ 2, 1, 2 ],
"type": 54,
"rounds": "%round% == 1 || %round% == 2",
"levers": [ ]
},
{
"position": [ 2, 1, 2 ],
"type": 51,
"rounds": "%round% > 2",
"levers": [ 0 ]
}
],
"chests": [
{
"position": [ 2, 1, 1 ],
"cost": 1000,
"facing": "SOUTH"
},
{
"position": [ 3, 1, 2 ],
"cost": 1000,
"facing": "WEST"
},
{
"position": [ 2, 1, 3 ],
"cost": 1000,
"facing": "NORTH"
}
],
"powerups": [
{
"position": [ 3, 2, 2 ],
"item": "DIAMOND_SWORD",
"enchantment":
{
"type": "DAMAGE_ALL",
"level": 1
},
"cost": 100
}
],
"levers": [
{
"position": [ 0, 0, 0 ],
"cost": 100,
"toggle": [ ]
}
]
}
]
|