-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix pumpkin chunks bulk recipe (Closes #99)
- Fix mixing bowls not consuming ingredients - Add peel to tool rack
- Loading branch information
1 parent
d4b59a4
commit a739521
Showing
6 changed files
with
43 additions
and
19 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
51 changes: 35 additions & 16 deletions
51
src/main/resources/data/firmalife/recipes/crafting/pumpkin_chunks_bulk.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,21 +1,40 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"XXX", | ||
"XYX", | ||
"XXX" | ||
], | ||
"key": { | ||
"X": { | ||
"item": "tfc:pumpkin" | ||
}, | ||
"Y": { | ||
"tag": "tfc:hammers" | ||
"type": "tfc:damage_inputs_shapeless_crafting", | ||
"recipe": { | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"tag": "tfc:hammers" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
}, | ||
{ | ||
"item": "tfc:pumpkin" | ||
} | ||
], | ||
"result": { | ||
"item": "firmalife:food/pumpkin_chunks", | ||
"count": 8 | ||
} | ||
}, | ||
"result": { | ||
"item": "firmalife:food/pumpkin_chunks", | ||
"count": 8 | ||
} | ||
} |
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