forked from Creators-of-Create/Create
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add chocolate melting, honey liquification, and honey compacting recipes - Create honey tag field and use Forge's milk tag field - Make fluid fields final - Closes Creators-of-Create#1845
- Loading branch information
1 parent
de929ef
commit 737b7ad
Showing
10 changed files
with
96 additions
and
33 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
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/create/recipes/compacting/honey.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,14 @@ | ||
{ | ||
"type": "create:compacting", | ||
"ingredients": [ | ||
{ | ||
"fluidTag": "forge:honey", | ||
"amount": 1000 | ||
} | ||
], | ||
"results": [ | ||
{ | ||
"item": "minecraft:honey_block" | ||
} | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
src/generated/resources/data/create/recipes/mixing/chocolate_melting.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,15 @@ | ||
{ | ||
"type": "create:mixing", | ||
"ingredients": [ | ||
{ | ||
"item": "create:bar_of_chocolate" | ||
} | ||
], | ||
"results": [ | ||
{ | ||
"fluid": "create:chocolate", | ||
"amount": 250 | ||
} | ||
], | ||
"heatRequirement": "heated" | ||
} |
15 changes: 15 additions & 0 deletions
15
src/generated/resources/data/create/recipes/mixing/honey.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,15 @@ | ||
{ | ||
"type": "create:mixing", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:honey_block" | ||
} | ||
], | ||
"results": [ | ||
{ | ||
"fluid": "create:honey", | ||
"amount": 1000 | ||
} | ||
], | ||
"heatRequirement": "heated" | ||
} |
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
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