SiliconGhetto Engine API
    Preparing search index...

    Interface RecipeInput

    Crafting recipe definition.

    interface RecipeInput {
        inputs?: number[];
        output?: string | number;
        count?: number;
        name?: string;
        tableOnly?: boolean;
    }
    Index

    Properties

    inputs?: number[]

    Input item/block type IDs (2 for 2x2, 4-9 for 3x3, use 0 for empty slots)

    output?: string | number

    Output item/block type ID or key string

    count?: number

    Number of items produced (default: 1)

    name?: string

    Recipe display name

    tableOnly?: boolean

    If true, requires a crafting table (default: false for 2x2, true for 3x3)