summaryrefslogtreecommitdiff
path: root/src/main/resources/settings.json
diff options
context:
space:
mode:
authorketsuban_152 <webmaster@dangofacotry.net>2026-07-04 21:59:07 +0900
committerketsuban_152 <webmaster@dangofacotry.net>2026-07-04 21:59:07 +0900
commit8354ed6c09e960d2f48d7bc40b7c7978947524eb (patch)
treeeba1dfff5d762cb6c991e93f27c8d2cae5e6a57f /src/main/resources/settings.json
downloadLuckyBlock-8354ed6c09e960d2f48d7bc40b7c7978947524eb.tar.gz
LuckyBlock-8354ed6c09e960d2f48d7bc40b7c7978947524eb.tar.bz2
LuckyBlock-8354ed6c09e960d2f48d7bc40b7c7978947524eb.zip
Initial commitHEADmaster
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