#I'm trying to make a recipe with multiple outputs, like how the cake recipe gives you three buckets
1 messages · Page 1 of 1 (latest)
{
"format_version": "1.12",
"minecraft:recipe_shapeless": {
"description": {
"identifier": "Isle:plant_fiber_wheat_stone"
},
"tags": [
"crafting_table"
],
"ingredients": [
{
"item": "minecraft:charcoal"
},
{
"item": "Isle:normal_sulfur_chunk"
}
],
"result": [
{
"item": "Isle:plant_string"
},
{
"item": "Isle:stone_knife",
"count": 1,
"data": 0
}
]
}
}
you can use this as a template, in the result put two items and it will show the first item in the crafting table but give you both
{
"format_version": "1.12",
"minecraft:recipe_shapeless": {
"description": {
"identifier": "ipt:washer"
},
"tags": [ "crafting_table" ],
"ingredients": [
{
"item": "ipt:iron_sheet"
},
{
"item": "minecraft:hopper"
},
{
"item": "minecraft:water_bucket"
},
{
"item": "minecraft:ladder"
}
],
"result": [
{
"item":"ipt:washer"
},
{
"item":"minecraft:bucket"
}
]
}
}
I thing I've copied it down, but I'm still only getting the washer, not the bucket
I think someone mentioned to me before that this can only be achieved by using shapes recipe
It worked with the shaped recipe! Thank you so much! That's a weird limitation, but so is a lot of the stuff in add-ons
{
"format_version": "1.12",
"minecraft:recipe_shaped": {
"description": {
"identifier": "ipt:sourdough_dough"
},
"tags": [ "crafting_table" ],
"pattern": [
"#",
"E"
],
"key": {
"#": {
"item": "ipt:regular_dough"
},
"E": {
"item": "ipt:sourdough_starter"
}
},
"result": [
{
"item":"ipt:sourdough_dough"
},{
"item":"ipt:sourdough_starter"
}
]
}
I seem to have mucked it up again. Anyone know why I might not be getting anything from this recipe?
Looks like ur missing a closing curly bracket at the end.