Files
simple-adventure/actions.md
2025-07-24 11:32:28 +00:00

15 lines
1.1 KiB
Markdown

# Game Actions
| Action | Description | Effect | Command Format |
|-------------|-------------|--------|-----------------|
| Look | Look around the current room | Descriptive text | look |
| Search | Search the current room for items | Descriptive text | search |
| Take | Pick up an item from the current room | Item is added to inventory | take {item name} |
| Use | Use an item from the inventory | Item is used | use {item name} [on {target}] |
| Drop | Drop an item from the inventory | Item is removed from inventory | drop {item name} |
| Inventory | Display the player's inventory | List inventory | inventory |
| Examine | Examine an item in the inventory | Descriptive text | examine {item name / target} |
| Move | Move to a different room | Room change | move {direction} |
| Attack | Attack an enemy | Damage dealt | attack {target} |
| Hide | Hide from an enemy | Enemy is blinded | hide {target} |