Implements craft command to create items from recipes by consuming ingredients from player inventory. Recipes command lists available recipes or shows details for a specific recipe. Registers commands and loads recipes at server startup.
4 lines
156 B
TOML
4 lines
156 B
TOML
name = "wooden_table"
|
|
description = "Craft a sturdy table from planks and nails"
|
|
ingredients = ["plank", "plank", "plank", "nail", "nail"]
|
|
result = "table"
|