Skip to content

Commit

Permalink
Add baking support for cracked bricks from endergetic
Browse files Browse the repository at this point in the history
  • Loading branch information
bageldotjpg committed Feb 14, 2023
1 parent efbdcdc commit 07ae96b
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 0 deletions.
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
}
}
]
}
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
}
}
]
}
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
}
}
]
}

0 comments on commit 07ae96b

Please sign in to comment.