25 lines
855 B
TOML
25 lines
855 B
TOML
name = "crafting"
|
|
title = "crafting items from recipes"
|
|
body = """
|
|
combine ingredients to create new items using recipes.
|
|
|
|
commands
|
|
craft <recipe> craft an item if you have the ingredients
|
|
recipes list all available recipes
|
|
recipes <name> view details for a specific recipe
|
|
|
|
how it works
|
|
recipes define what ingredients are needed and what you get.
|
|
you need all ingredients in your inventory to craft.
|
|
ingredients are consumed when you craft.
|
|
|
|
example
|
|
wooden table requires 3 planks and 2 nails.
|
|
carrying those items? type 'craft wooden table'.
|
|
the ingredients disappear and you get a table.
|
|
|
|
finding recipes
|
|
use 'recipes' to see what you can make.
|
|
use 'recipes <name>' to see what ingredients you need.
|
|
prefix matching works - 'craft wood' matches 'wooden table'.
|
|
"""
|