diff options
author | Griffin Smith <root@gws.fyi> | 2019-12-23T04·22-0500 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-12-23T04·22-0500 |
commit | 6622dd301860765ed16f29f74c9d1348d3aa0d41 (patch) | |
tree | c8936207422e9ae884ba73ce0309603b0a6004f8 /src/Xanthous/messages.yaml | |
parent | 5b1c7799a76480335f838356ad78bed50715d4c0 (diff) |
Add a wield command
Add a Wield command, which prompts for a wieldable item, if any, to take out of the character's inventory and put in their right hand. Eventually we should support other hands, but for now hardcoding the right hand should be fine.
Diffstat (limited to 'src/Xanthous/messages.yaml')
-rw-r--r-- | src/Xanthous/messages.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Xanthous/messages.yaml b/src/Xanthous/messages.yaml index 0d8ada8c57f9..3967a0cba067 100644 --- a/src/Xanthous/messages.yaml +++ b/src/Xanthous/messages.yaml @@ -67,5 +67,17 @@ read: nothing: "There's nothing there to read" result: "\"{{message}}\"" +wield: + nothing: + - You aren't carrying anything you can wield + - You can't wield anything in your backpack + - You can't wield anything currently in your backpack + menu: What would you like to wield? + # TODO: use actual hands + wielded : You wield the {{wieldedItem.itemType.name}} in your right hand. + + +### + tutorial: message1: The caves are dark and full of nightmarish creatures - and you are likely to perish without food. Seek out sustenance! You can pick items up with ,. |