> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smzi.fr/llms.txt
> Use this file to discover all available pages before exploring further.

# Crafting

> Define the crafting system as you like

## Toggle crafting

Enable or disable crafting

```LUA theme={null}
Config.craftingEnabled = true
```

## Crafting Recipes

Define the recipes that players can craft.

```LUA theme={null}
Config.recipes = {
    ["basic_pickaxe"] = {
        label = "Basic Pickaxe",
        craftingTime = 1200,
        itemsRequired = {
            { itemName = "iron", count = 10, refined = false, label = "Iron" },
        }
    },
    ["advanced_pickaxe"] = {
        label = "Advanced Pickaxe",
        craftingTime = 1200,
        itemsRequired = {
            { itemName = "titanium", count = 5, refined = true, label = "Titanium" },
            { itemName = "iron", count = 10, refined = true, label = "Iron" },
        }
    },
}


```
