Interface CraftingMaterial

A material to be used while crafting an item

interface CraftingMaterial {
    amount: number;
    item: string;
}

Properties

Properties

amount: number

The amount required

item: string

The material name

Generated using TypeDoc