bedrock-kit
    Preparing search index...

    Interface ShapelessIngredient

    A single ingredient in a shapeless recipe, with its required count.

    interface ShapelessIngredient {
        count: number;
        ingredient: Item | Tag;
    }
    Index

    Properties

    Properties

    count: number

    How many of this ingredient are required. Defaults to 1 if not specified in the file.

    ingredient: Item | Tag

    The resolved ingredient — either a specific Item or a Tag.