-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix clay tool being consumed while crafting bricks - splits recipes i…
…nto two delegates for shaped and shapeless due to Forge. Fixes #219. Add cauldron interactions for ceramic buckets, Fixes #221.
- Loading branch information
1 parent
c4795c0
commit 43c323c
Showing
81 changed files
with
610 additions
and
525 deletions.
There are no files selected for viewing
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/acacia_planks_with_flint_axe.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/acacia_planks_with_saw.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/birch_planks_with_flint_axe.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/birch_planks_with_saw.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
23 changes: 13 additions & 10 deletions
23
Common/src/main/resources/data/notreepunching/recipes/clay_brick_from_balls.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 |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "notreepunching:clay_tool" | ||
}, | ||
{ | ||
"item": "minecraft:clay_ball" | ||
"type": "notreepunching:tool_damaging_shapeless", | ||
"recipe": { | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "notreepunching:clay_tool" | ||
}, | ||
{ | ||
"item": "minecraft:clay_ball" | ||
} | ||
], | ||
"result": { | ||
"item": "notreepunching:clay_brick" | ||
} | ||
], | ||
"result": { | ||
"item": "notreepunching:clay_brick" | ||
} | ||
} |
25 changes: 14 additions & 11 deletions
25
Common/src/main/resources/data/notreepunching/recipes/clay_brick_from_blocks.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 |
---|---|---|
@@ -1,16 +1,19 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "notreepunching:clay_tool" | ||
}, | ||
{ | ||
"item": "minecraft:clay" | ||
"type": "notreepunching:tool_damaging_shapeless", | ||
"recipe": { | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "notreepunching:clay_tool" | ||
}, | ||
{ | ||
"item": "minecraft:clay" | ||
} | ||
], | ||
"result": { | ||
"item": "notreepunching:clay_brick", | ||
"count": 4 | ||
} | ||
], | ||
"result": { | ||
"item": "notreepunching:clay_brick", | ||
"count": 4 | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/crimson_planks_with_flint_axe.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/crimson_planks_with_saw.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/dark_oak_planks_with_flint_axe.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/dark_oak_planks_with_saw.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/jungle_planks_with_flint_axe.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/jungle_planks_with_saw.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/oak_planks_with_flint_axe.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/oak_planks_with_saw.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/spruce_planks_with_flint_axe.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
2 changes: 1 addition & 1 deletion
2
Common/src/main/resources/data/notreepunching/recipes/spruce_planks_with_saw.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
Oops, something went wrong.