34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
name = "containers"
|
|
title = "inventory and containers"
|
|
body = """
|
|
pick up items, carry them in your inventory, and store them
|
|
in containers like chests and bags.
|
|
|
|
basic commands
|
|
get <item> pick up an item from the ground
|
|
take <item> same as get
|
|
drop <item> drop an item at your feet
|
|
inventory list what you're carrying
|
|
i short for inventory
|
|
|
|
containers
|
|
containers are items that hold other items.
|
|
they can be open or closed, and some can be locked.
|
|
|
|
container commands
|
|
open <container> open a container
|
|
close <container> close a container
|
|
put <item> in <container> store an item in a container
|
|
get <item> from <container> take an item from a container
|
|
get all from <container> take everything from a container
|
|
|
|
where to find containers
|
|
containers can be on the ground or in your inventory.
|
|
put commands work with either location.
|
|
closed containers block access to their contents.
|
|
|
|
targeting
|
|
you can use partial names - 'get pla' matches 'plank'.
|
|
ordinals work too - 'get 2nd sword' if there are multiple.
|
|
container state shows in inventory - (open, empty) or (closed).
|
|
"""
|