From 424625e4fd534d48db9de6fea18d401ba3bbf698 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 13 Dec 2020 06:24:15 +0100 Subject: [PATCH] Re-name some modes. --- rogue_chat.html | 12 ++++++------ rogue_chat_curses.py | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/rogue_chat.html b/rogue_chat.html index 653a703..3536d15 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -151,17 +151,17 @@ let mode_helps = { 'long': 'Give name to/change name of thing here.' }, 'command_thing': { - 'short': 'command thing', + 'short': 'command', 'intro': '', 'long': 'Enter a command to the thing you carry. Enter nothing to return to play mode.' }, 'take_thing': { - 'short': 'take thing', + 'short': 'take', 'intro': 'Pick up a thing in reach by entering its index number. Enter nothing to abort.', 'long': 'You see a list of things which you could pick up. Enter the target thing\'s index, or, to leave, nothing.' }, 'drop_thing': { - 'short': 'drop thing', + 'short': 'drop', 'intro': 'Enter number of direction to which you want to drop thing.', 'long': 'Drop currently carried thing by entering the target direction index. Enter nothing to return to play mode..' }, @@ -171,17 +171,17 @@ let mode_helps = { 'long': 'Change protection character for thing here.' }, 'enter_face': { - 'short': 'enter your face', + 'short': 'edit face', 'intro': '@ enter face line (enter nothing to abort):', 'long': 'Draw your face as ASCII art. The string you enter must be 18 characters long, and will be divided on display into 3 lines of 6 characters each, from top to bottom. Eat cookies to extend the ASCII characters available for drawing.' }, 'enter_hat': { - 'short': 'enter your hat', + 'short': 'edit hat', 'intro': '@ enter hat line (enter nothing to abort):', 'long': 'Draw your hat as ASCII art. The string you enter must be 18 characters long, and will be divided on display into 3 lines of 6 characters each, from top to bottom..' }, 'write': { - 'short': 'change terrain', + 'short': 'edit tile', 'intro': '', 'long': 'This mode allows you to change the map tile you currently stand on (if your world editing password authorizes you so). Just enter any printable ASCII character to imprint it on the ground below you.' }, diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index 34db7c9..c6113df 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -32,17 +32,17 @@ mode_helps = { 'long': 'Give name to/change name of thing here.' }, 'command_thing': { - 'short': 'command thing', + 'short': 'command', 'intro': '', 'long': 'Enter a command to the thing you carry. Enter nothing to return to play mode.' }, 'take_thing': { - 'short': 'take thing', + 'short': 'take', 'intro': 'Pick up a thing in reach by entering its index number. Enter nothing to abort.', 'long': 'You see a list of things which you could pick up. Enter the target thing\'s index, or, to leave, nothing.' }, 'drop_thing': { - 'short': 'drop thing', + 'short': 'drop', 'intro': 'Enter number of direction to which you want to drop thing.', 'long': 'Drop currently carried thing by entering the target direction index. Enter nothing to return to play mode..' }, @@ -52,17 +52,17 @@ mode_helps = { 'long': 'Change protection character for thing here.' }, 'enter_face': { - 'short': 'enter your face', + 'short': 'edit face', 'intro': '@ enter face line (enter nothing to abort):', 'long': 'Draw your face as ASCII art. The string you enter must be 18 characters long, and will be divided on display into 3 lines of 6 characters each, from top to bottom..' }, 'enter_hat': { - 'short': 'enter your hat', + 'short': 'edit hat', 'intro': '@ enter hat line (enter nothing to abort):', 'long': 'Draw your face as ASCII art. The string you enter must be 18 characters long, and will be divided on display into 3 lines of 6 characters each, from top to bottom. Eat cookies to extend the ASCII characters available for drawing.' }, 'write': { - 'short': 'change terrain', + 'short': 'edit tile', 'intro': '', 'long': 'This mode allows you to change the map tile you currently stand on (if your world editing password authorizes you so). Just enter any printable ASCII character to imprint it on the ground below you.' }, -- 2.30.2