Hi guys, I'm trying to use forge ore dictionary with multiple hammer types (multiple metal types) to be utilized in crushing shards and dust. I ran into problems trying to add data and the wildcard value for the ore dictionary type (Shown below).
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"type": "forge:ore_dict",
"ore": "hammer",
"data": 32767
},
{
"item": "soa:amethyst",
"data": 1
}
],
"result": {
"item": "soa:amethyst",
"data": 2,
"count": 4
}
}
This method doesn't work. Without calling the wildcard value ("data": 32767), it works but stops working after one use. I'm unsure if there is a way using multiple hammers for a recipe like this or I need to do one hammer type per shard to dust recipes.
EDIT: Solved using Choonster's post below using his alternative method with compound ingredients in _constants.JSON and referencing it in my recipe's JSON.