Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
SoniEx2 committed Nov 5, 2015
1 parent 8aeb744 commit f31e140
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 10 deletions.
25 changes: 20 additions & 5 deletions src/main/resources/assets/notebetter/config/examples/soniex2.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
25 changes: 20 additions & 5 deletions src/main/resources/assets/notebetter/config/examples/vanilla.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit f31e140

Please sign in to comment.