#How to reference en entire item category (#flowers) for a recipe
1 messages · Page 1 of 1 (latest)
<@&1201956957406109788>
💬 While you wait, take this time to provide more context and details.
🙇 If nobody has answered you by <t:1742108145:t>, feel free to use the Summon Helpers button to ping our helper team.
✅ Once your question has been resolved (or you no longer need it), please click Resolve Question or run /resolve
what version are you in
1.21.4
then you just use the tag in place of an item id
haw ._.
i see where the output says id but the input items is just a list
or a string
the string in question is an item id or an item tag
and for list it would be a list of item ids (tags aren't allowed in that case)
so if i wanted to make any flower craftable into seeds what would i change here
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
[
"minecraft:poppy"
]
],
"result": {
"id": "minecraft:wheat_seeds",
"count": 1
}
}
the item id minecraft:poppy under the ingredients field
actually, if you want it to be a tag instead you'd have to change it from:
[
"minecraft:poppy"
]
]```
to:
``` "ingredients": [
"#minecraft:flowers"
]```
since as i mentioned you aren't allowed to use item tags in an ingredient list, which is what you have there
can i ask something else?
don't ask to ask, just ask.
it is under that id yes, which unfortunately means you can't actually use a water bottle specifically as an ingredient without also allowing every other type of potion to be used