summaryrefslogtreecommitdiff
path: root/src/main/resources/settings.json
blob: 6e3911a5fcf6c0af3ed5eaa8f29f82bbcde5cc2a (plain)
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
{
  "LuckyBlock": {
    "message1": {
      "type": "broadcast",
      "weight": 0,
      "text": "§e[LuckyBlock] someone broken a block",
      "queue": [],
      "delay-queue": []
    },
    "message2": {
      "type": "broadcast",
      "weight": 1,
      "text": [
        "[LuckyBlock] text",
        "§e[LuckyBlock] text!"
      ],
      "queue": ["spawn_gem", "spawn_tnt", "spawn_tnt_h"],
      "delay-queue": [3, 1, 0]
    },
    "spawn_gem": {
      "type": "summon_item",
      "weight": 5,
      "items": ["minecraft:emerald", "minecraft:diamond"],
      "count": 3,
      "queue": []
    },
    "spawn_tnt": {
      "type": "summon",
      "weight": 20,
      "items": ["minecraft:tnt"],
      "count": 4,
      "queue": []
    },
    "spawn_tnt_h": {
      "type": "summon",
      "weight": 20,
      "items": ["minecraft:tnt"],
      "height": 10,
      "queue": ["spawn_anvil"]
    },
    "spawn_anvil": {
      "type": "summon",
      "weight": -1,
      "items": ["minecraft:anvil"],
      "height": 10,
      "queue": ["prison"]
    },
    "prison": {
      "type": "trapped_room",
      "weight": -1,
      "radius": 3,
      "wall-blocks": [
        "minecraft:stone_bricks",
        "minecraft:obsidian",
        "minecraft:crying_obsidian",
        "minecraft:magma_block",
        "minecraft:nether_bricks"
      ],
      "queue": ["summon_m_creeper"]
    },
    "summon_m_creeper": {
      "type": "summon",
      "weight": -1,
      "mobs": ["minecraft:creeper"],
      "count": 5,
      "is-powered": true,
      "queue": []
    }
  }
}