Upload files to "/"

This commit is contained in:
2025-07-24 11:32:28 +00:00
commit aaf807a757
2 changed files with 275 additions and 0 deletions

14
actions.md Normal file
View File

@@ -0,0 +1,14 @@
# 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} |