Improved docs

This commit is contained in:
Devine Lu Linvega 2020-09-17 12:11:40 -07:00
parent 330fa8666d
commit fbbe881bec
1 changed files with 19 additions and 17 deletions

View File

@ -1,26 +1,28 @@
# Parade # Parade
This simple implementation incorporates the basic primitives. In Paradise, you are but a force acting upon places, objects, words — vessels. Parade is a subset of the Paradise interactive fiction engine designed explicitly to explore the possible interactions available within the primitives.
``` ### Basic commands
create a teapot
become the teapot
enter the ghost
leave
take the ghost - create a teapot
drop the ghost - become the teapot
warp in the teapot - enter the ghost
transform into a bat - leave
note the bat is dark. ### Controls commands
program create a teapot
warp to the library
become the ghost
use the bat ; should create a teapot - take the ghost
``` - drop the ghost
- warp in the teapot
- transform into a bat
### Narrative commands
- note the bat is dark.
- program create a teapot
- warp to the library
- use the bat
## Save/Load ## Save/Load
To save a world, use `@save filename.txt`, to load `@load filename.txt`, to quit `@quit`. To save a world, use `@save filename.txt`, to load `@load filename.txt`, to quit `@quit`. You can learn more about Parade [here](https://wiki.xxiivv.com/site/parade.html).