forked from team-abnormals/clayworks
-
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 baking support for cracked bricks from endergetic
- Loading branch information
1 parent
efbdcdc
commit 07ae96b
Showing
3 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
...ain/resources/data/clayworks/recipes/endergetic/cracked_end_stone_bricks_from_baking.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,31 @@ | ||
{ | ||
"type": "forge:conditional", | ||
"recipes": [ | ||
{ | ||
"conditions": [ | ||
{ | ||
"values": [ | ||
{ | ||
"modid": "endergetic", | ||
"type": "forge:mod_loaded" | ||
}, | ||
{ | ||
"value": "kiln", | ||
"type": "clayworks:config" | ||
} | ||
], | ||
"type": "forge:and" | ||
} | ||
], | ||
"recipe": { | ||
"type": "clayworks:baking", | ||
"ingredient": { | ||
"item": "minecraft:end_stone_bricks" | ||
}, | ||
"result": "endergetic:cracked_end_stone_bricks", | ||
"experience": 0.1, | ||
"cookingtime": 100 | ||
} | ||
} | ||
] | ||
} |
31 changes: 31 additions & 0 deletions
31
src/main/resources/data/clayworks/recipes/endergetic/cracked_eumus_bricks_from_baking.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,31 @@ | ||
{ | ||
"type": "forge:conditional", | ||
"recipes": [ | ||
{ | ||
"conditions": [ | ||
{ | ||
"values": [ | ||
{ | ||
"modid": "endergetic", | ||
"type": "forge:mod_loaded" | ||
}, | ||
{ | ||
"value": "kiln", | ||
"type": "clayworks:config" | ||
} | ||
], | ||
"type": "forge:and" | ||
} | ||
], | ||
"recipe": { | ||
"type": "clayworks:baking", | ||
"ingredient": { | ||
"item": "endergetic:eumus_bricks" | ||
}, | ||
"result": "endergetic:cracked_eumus_bricks", | ||
"experience": 0.1, | ||
"cookingtime": 100 | ||
} | ||
} | ||
] | ||
} |
31 changes: 31 additions & 0 deletions
31
src/main/resources/data/clayworks/recipes/endergetic/cracked_purpur_block_from_baking.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,31 @@ | ||
{ | ||
"type": "forge:conditional", | ||
"recipes": [ | ||
{ | ||
"conditions": [ | ||
{ | ||
"values": [ | ||
{ | ||
"modid": "endergetic", | ||
"type": "forge:mod_loaded" | ||
}, | ||
{ | ||
"value": "kiln", | ||
"type": "clayworks:config" | ||
} | ||
], | ||
"type": "forge:and" | ||
} | ||
], | ||
"recipe": { | ||
"type": "clayworks:baking", | ||
"ingredient": { | ||
"item": "minecraft:purpur_block" | ||
}, | ||
"result": "endergetic:cracked_purpur_block", | ||
"experience": 0.1, | ||
"cookingtime": 100 | ||
} | ||
} | ||
] | ||
} |