HINTS = {
- ACT: ("Choose an action using the Up/Down keys.\n"
- "Press Enter to execute the action."),
- EXAMINE: "Select a tile to examine using the arrow keys.",
+ ACT: "Choose an action using {NORTH,SOUTH} keys.\n"
+ "Press {RETURN} to execute it.",
+ EXAMINE: "Browse the tiles with {NORTH,SOUTH,EAST,WEST} keys.",
}
-HINT_LEGAL_MOVE = "\nPress Return to move to this tile."
+HINT_LEGAL_MOVE = "\nPress {RETURN} to move to this tile."
TITLES = {
ACT: "Choose an Action",
'SOUTH': ('glyphs/arrow_down.png', None),
'EAST': ('glyphs/arrow_right.png', None),
'WEST': ('glyphs/arrow_left.png', None),
+ 'RETURN': ('glyphs/arrow_left.png', None),
'HEALTH': ('glyphs/health.png', PALETTE.DARK_RED),
'WINTOKEN': ('glyphs/win.png', PALETTE.DARK_OLIVE),
'KEY': ('glyphs/key.png', None),