-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bonemeal, gravel, and sand forge hammer recipes (#979)
- Loading branch information
1 parent
294d414
commit a348e13
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
...ta/modern_industrialization/recipe/vanilla_recipes/forge_hammer/bone_meal_from_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"type": "modern_industrialization:forge_hammer", | ||
"damage": 45, | ||
"ingredient": { | ||
"item": "minecraft:bone_block" | ||
}, | ||
"result": { | ||
"id": "minecraft:bone_meal", | ||
"count": 9 | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...ata/modern_industrialization/recipe/vanilla_recipes/forge_hammer/bone_meal_from_bone.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"type": "modern_industrialization:forge_hammer", | ||
"damage": 30, | ||
"ingredient": { | ||
"item": "minecraft:bone" | ||
}, | ||
"result": { | ||
"id": "minecraft:bone_meal", | ||
"count": 6 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...n/resources/data/modern_industrialization/recipe/vanilla_recipes/forge_hammer/gravel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "modern_industrialization:forge_hammer", | ||
"damage": 10, | ||
"ingredient": { | ||
"item": "minecraft:cobblestone" | ||
}, | ||
"result": { | ||
"id": "minecraft:gravel" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...ain/resources/data/modern_industrialization/recipe/vanilla_recipes/forge_hammer/sand.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "modern_industrialization:forge_hammer", | ||
"damage": 10, | ||
"ingredient": { | ||
"item": "minecraft:gravel" | ||
}, | ||
"result": { | ||
"id": "minecraft:sand" | ||
} | ||
} |