21 lines
608 B
TOML
21 lines
608 B
TOML
name = "zones"
|
|
title = "zones"
|
|
admin = true
|
|
body = """
|
|
zones are spatial containers - rooms, dungeons, overworld areas.
|
|
each zone has a terrain grid, spawn point, and optional portals.
|
|
|
|
listing zones
|
|
@zones list all registered zones
|
|
|
|
navigating
|
|
@goto <zone> teleport to a zone's spawn point
|
|
enter <portal> step through a portal to another zone
|
|
|
|
building
|
|
@dig <name> <w> <h> create a new blank zone
|
|
@paint toggle paint mode for terrain editing
|
|
@save save current zone to file
|
|
|
|
see: @zones, @goto, @dig, @paint, @save
|
|
"""
|