From f31e140a531cd81b70741666a4d88bb3f020045c Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Thu, 5 Nov 2015 00:15:18 -0200 Subject: [PATCH] Update examples --- .../notebetter/config/examples/soniex2.json | 25 +++++++++++++++---- .../notebetter/config/examples/vanilla.json | 25 +++++++++++++++---- 2 files changed, 40 insertions(+), 10 deletions(-) diff --git a/src/main/resources/assets/notebetter/config/examples/soniex2.json b/src/main/resources/assets/notebetter/config/examples/soniex2.json index b087e69..09c5c6f 100644 --- a/src/main/resources/assets/notebetter/config/examples/soniex2.json +++ b/src/main/resources/assets/notebetter/config/examples/soniex2.json @@ -2,25 +2,40 @@ "blocks": [ { "block": "minecraft:enchanting_table", - "sound": "minecraft:random.orb" + "sound": { + "name": "minecraft:random.orb", + "volume": 3.0 + } }, { "block": "minecraft:brewing_stand", - "sound": "minecraft:random.pop" + "sound": { + "name": "minecraft:random.pop", + "volume": 3.0 + } } ], "materials": [ { "material": "minecraft:iron_block", - "sound": "minecraft:note.pling" + "sound": { + "name": "minecraft:note.pling", + "volume": 3.0 + } }, { "material": "minecraft:anvil", - "sound": "minecraft:random.anvil_land" + "sound": { + "name": "minecraft:random.anvil_land", + "volume": 3.0 + } }, { "material": "minecraft:piston", - "sound": "minecraft:tile.piston.out" + "sound": { + "name": "minecraft:tile.piston.out", + "volume": 3.0 + } } ], "default": null diff --git a/src/main/resources/assets/notebetter/config/examples/vanilla.json b/src/main/resources/assets/notebetter/config/examples/vanilla.json index 614d0c8..431bb25 100644 --- a/src/main/resources/assets/notebetter/config/examples/vanilla.json +++ b/src/main/resources/assets/notebetter/config/examples/vanilla.json @@ -4,20 +4,35 @@ "materials": [ { "material": "minecraft:stone", - "sound": "minecraft:note.bd" + "sound": { + "name": "minecraft:note.bd", + "volume": 3.0 + } }, { "material": "minecraft:sand", - "sound": "minecraft:note.snare" + "sound": { + "name": "minecraft:note.snare", + "volume": 3.0 + } }, { "material": "minecraft:glass", - "sound": "minecraft:note.hat" + "sound": { + "name": "minecraft:note.hat", + "volume": 3.0 + } }, { "material": "minecraft:planks", - "sound": "minecraft:note.bassattack" + "sound": { + "name": "minecraft:note.bassattack", + "volume": 3.0 + } } ], - "default": "minecraft:note.harp" + "default": { + "name": "minecraft:note.harp", + "volume": 3.0 + } } \ No newline at end of file