Hello world,
I'm trying to realize a mod with Forge 1.15.2. I don't have big problem, but I want to implement a specific recipe, for an item.
To craft this item, I want players to use 7 different dyes, whatever they are. Only 7 different colors dyes. I found the Tags system, so I used it to write my recipe. But players can still make the recipe with 7 bone meal.
I searched a bit, but I didn't find solution for this problem.
Do you know how to deal with that, and force players to give 7 different items, corresponding to the same Tag, without forcing especially the dye type ?
Here is my recipe.json file :
{
"type": "minecraft:crafting_shaped",
"pattern": [
"bgd",
"ddd",
"ddd"
],
"key": {
"b": {
"item": "rainbowportals:magic_bucket"
},
"g": {
"item": "minecraft:water_bucket"
},
"d": {
"tag": "forge:dyes"
}
},
"result": {
"type": "minecraft:item",
"item": "rainbowportals:dye_bucket"
}
}
Thanks by advance