#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)

forest flower
#

I've seen other add-ons do it, where a recipe the uses like strawberry jam will return a bottle when you do the crafting, so I know it's possible. But I don't see it covered by the documentation, so I thought I'd ask here

signal edge
#

{
"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

forest flower
#

{
"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

quiet badge
forest flower
forest flower
#

{
"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?

static scarab