Fluid Barrel container item defined. DataFixing added.

This commit is contained in:
stfwi 2020-10-30 22:31:48 +01:00
parent 48748a25c5
commit 43687d835b
6 changed files with 139 additions and 3 deletions

View file

@ -0,0 +1,52 @@
{
"type": "forge:conditional",
"recipes": [
{
"conditions": [
{
"type": "engineersdecor:optional",
"result": "engineersdecor:old_industrial_wood_planks",
"required": ["#forge:treated_wood"]
}
],
"recipe": {
"type": "minecraft:crafting_shaped",
"pattern": [
"WW",
"WC"
],
"key": {
"C": { "item": "minecraft:charcoal" },
"W": { "tag" : "forge:treated_wood" }
},
"result": {
"item": "engineersdecor:old_industrial_wood_planks",
"count": 4
}
}
},
{
"conditions": [
{
"type": "engineersdecor:optional",
"result": "engineersdecor:old_industrial_wood_planks"
}
],
"recipe": {
"type": "minecraft:crafting_shaped",
"pattern": [
"WW",
"WC"
],
"key": {
"C": { "item": "minecraft:charcoal" },
"W": { "tag": "minecraft:planks" }
},
"result": {
"item": "engineersdecor:old_industrial_wood_planks",
"count": 4
}
}
}
]
}