For an overview of the Item and its place in Tidy Text Adventures, see the Overview page.
Actions are the core driver of interactions in your Tidy Text Adventure.
Actions are the building blocks UseCases - and can be combined to make virtually any changes to the game world that you desire.
There are seven core types of Action:
- Add Item to Room
- Adds an item to a room.
- Example: "Add puddle of bile to Living Room"
- Remove Item from Room
- Removes an item from a room.
- Example: "Remove month-old bucket of chicken from Living Room"
- Switch Items in Room
- Removes an item from a room and replaces it with another item.
- Example: "Remove teapot from Living Room and replace it with Pile of ceramic shards"
- Take Item from Room
- Removes an item from a room and places it in the inventory.
- Example: "Remove shards from Living Room and place into Inventory"
- Toggle Room Accessibility
- Opens or closes a room - making it accessible / inaccessible to the player.
- Example: "Open hallway"
- Teleport to Room
- Teleports the player to a target room.
- Example: "Teleport player to jail cell"
- Switch Room for another Room
- Switches a Room with another room
- Example: "Replace Jail Cell with Flaming Jail Cell with fouled Mattress"
|