ItemsAdderAdditionsItemsAdderAdditions
Recipes

Stonecutter

Add stonecutter recipes for custom or vanilla items in ItemsAdder.

Since v1.0.7

Add stonecutter recipes without creating extra recipe files.

Parameters

enabled

Optional. Defaults to true. Set to false to skip registering the recipe.

ingredient.item

Required. The input item shown in the stonecutter. Use a vanilla material or a custom ItemsAdder item.

ingredient:
  item: STONE
ingredient:
  item: my_pack:rough_marble

result.item

Required. The output item.

result:
  item: STONE_BRICKS

result.amount

Optional. Defaults to 1. The number of items produced.

Full example

info:
  namespace: my_pack

recipes:
  stonecutter:
    marble_tiles:
      ingredient:
        item: my_pack:rough_marble
      result:
        item: my_pack:marble_tiles
        amount: 2

Notes

  • Supports vanilla and custom ItemsAdder items.
  • Recipe IDs such as marble_tiles are internal identifiers.
  • The namespace comes from info.namespace.

On this page