Skip to content

v1.0.3

Choose a tag to compare

@ItsSheepish ItsSheepish released this 27 May 13:44
· 2 commits to master since this release

Added Shaped + Shapeless Recipe

"sheepish_api:shaped_shapeless"

  • A new recipe type allowing for compat of 2 different recipe types within one recipe.
  • Uses shapeless formatting with additional "shapeless_ingredients" list field

Example Formatting:

{
  "type": "sheepish_api:shaped_shapeless",
  "category": "equipment",
  "pattern": [
    "# #",
    "   ",
    "   "
  ],
  "key": {
    "#": {
      "item": "minecraft:gold_ingot"
    }
  },
  "shapeless_ingredients": [
    {
      "item": "minecraft:diamond"
    },
    {
      "item": "minecraft:emerald"
    }
  ],
  "result": {
    "id": "minecraft:netherite_ingot",
    "count": 1
  }
}