diff --git a/res/content/base/block_materials/grass_block.json b/res/content/base/block_materials/grass_block.json index d866ff40..d45672a2 100644 --- a/res/content/base/block_materials/grass_block.json +++ b/res/content/base/block_materials/grass_block.json @@ -1,5 +1,6 @@ { "steps-sound": "steps/grass", "place-sound": "blocks/ground_place", - "break-sound": "blocks/ground_break" + "break-sound": "blocks/ground_break", + "hit-sound": "blocks/ground_hit" } diff --git a/res/content/base/block_materials/ground.json b/res/content/base/block_materials/ground.json index 36b15aed..951cb5df 100644 --- a/res/content/base/block_materials/ground.json +++ b/res/content/base/block_materials/ground.json @@ -1,5 +1,6 @@ { "steps-sound": "steps/ground", "place-sound": "blocks/ground_place", - "break-sound": "blocks/ground_break" + "break-sound": "blocks/ground_break", + "hit-sound": "blocks/ground_hit" } diff --git a/res/content/base/block_materials/stone.json b/res/content/base/block_materials/stone.json index a5b6df37..43f579e7 100644 --- a/res/content/base/block_materials/stone.json +++ b/res/content/base/block_materials/stone.json @@ -1,5 +1,6 @@ { "steps-sound": "steps/stone", "place-sound": "blocks/stone_place", - "break-sound": "blocks/stone_break" + "break-sound": "blocks/stone_break", + "hit-sound": "blocks/stone_hit" } diff --git a/res/content/base/block_materials/wood.json b/res/content/base/block_materials/wood.json index d29b8a63..0c8e9a46 100644 --- a/res/content/base/block_materials/wood.json +++ b/res/content/base/block_materials/wood.json @@ -1,5 +1,6 @@ { "steps-sound": "steps/wood", "place-sound": "blocks/wood_place", - "break-sound": "blocks/wood_break" + "break-sound": "blocks/wood_break", + "hit-sound": "blocks/wood_hit" } diff --git a/res/content/base/blocks/dirt.json b/res/content/base/blocks/dirt.json index ff512254..060325a8 100644 --- a/res/content/base/blocks/dirt.json +++ b/res/content/base/blocks/dirt.json @@ -2,5 +2,5 @@ "texture": "dirt", "material": "base:ground", "surface-replacement": "base:grass_block", - "base:durability": 1.0 + "base:durability": 1.5 } diff --git a/res/content/base/blocks/grass.json b/res/content/base/blocks/grass.json index e55bc2ac..d5b8472e 100644 --- a/res/content/base/blocks/grass.json +++ b/res/content/base/blocks/grass.json @@ -8,7 +8,7 @@ "replaceable": true, "grounded": true, "model": "X", - "hitbox": [0.15, 0.0, 0.15, 0.7, 0.7, 0.7], + "hitbox": [0.15, 0.0, 0.15, 0.7, 0.5, 0.7], "base:durability": 0.0, "base:loot": [] } diff --git a/res/content/base/blocks/grass_block.json b/res/content/base/blocks/grass_block.json index e89a774c..3a55bc5e 100644 --- a/res/content/base/blocks/grass_block.json +++ b/res/content/base/blocks/grass_block.json @@ -8,7 +8,7 @@ "grass_side", "grass_side" ], - "base:durability": 1.3, + "base:durability": 1.7, "base:loot": [ {"item": "base:dirt.item"} ] diff --git a/res/content/base/sounds/blocks/ground_hit.ogg b/res/content/base/sounds/blocks/ground_hit.ogg new file mode 100644 index 00000000..f59207cd Binary files /dev/null and b/res/content/base/sounds/blocks/ground_hit.ogg differ diff --git a/res/content/base/sounds/blocks/stone_break.ogg b/res/content/base/sounds/blocks/stone_break.ogg index b54a78a8..e35369cd 100644 Binary files a/res/content/base/sounds/blocks/stone_break.ogg and b/res/content/base/sounds/blocks/stone_break.ogg differ diff --git a/res/content/base/sounds/blocks/stone_hit.ogg b/res/content/base/sounds/blocks/stone_hit.ogg new file mode 100644 index 00000000..cb956164 Binary files /dev/null and b/res/content/base/sounds/blocks/stone_hit.ogg differ diff --git a/res/content/base/sounds/blocks/wood_hit.ogg b/res/content/base/sounds/blocks/wood_hit.ogg new file mode 100644 index 00000000..8f8bea0f Binary files /dev/null and b/res/content/base/sounds/blocks/wood_hit.ogg differ diff --git a/res/content/base/textures/blocks/grass.png b/res/content/base/textures/blocks/grass.png index 98dbda01..e2fe7062 100644 Binary files a/res/content/base/textures/blocks/grass.png and b/res/content/base/textures/blocks/grass.png differ