summaryrefslogtreecommitdiff
path: root/src/main/resources/settings.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/settings.json')
-rw-r--r--src/main/resources/settings.json70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/main/resources/settings.json b/src/main/resources/settings.json
new file mode 100644
index 0000000..6e3911a
--- /dev/null
+++ b/src/main/resources/settings.json
@@ -0,0 +1,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": []
+ }
+ }
+} \ No newline at end of file