modmuss50 / RecipeManipulator

A simple light weight mod for 1.12 that allows the changing of recipes.
MIT License
4 stars 0 forks source link

[RFC] Multi-ingredient shapeless recipe #5

Open LincT opened 3 days ago

LincT commented 3 days ago

I've got the following which works, but the original gist's for basic recipes appear to be missing. Is there support or syntax for something akin to a resource block wherein 9 of the same item become one block as a single entry?

otherwise I'm using the following:

{
  "type": "minecraft:crafting_shapeless",
  "ingredients": [
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 },
    { "item": "thaumcraft:nugget", "data": 9 }
  ],
  "result": {
    "item": "minecraft:quartz",
    "count": 1
  }
}
LincT commented 3 days ago

For anyone else trying to find this, this also works:

{
  "type": "minecraft:crafting_shaped",
  "pattern": ["III","III","III"],
  "key": { "I": { "item": "thaumcraft:nugget", "data": 9 } },
  "result": {"item": "minecraft:quartz", "count": 1 }
}