keys.lua 851 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. -- move
  2. move_nw = 'u'
  3. move_n = 'i'
  4. move_ne = 'o'
  5. move_w = 'j'
  6. wait = 'k'
  7. move_e = 'l'
  8. move_sw = 'm'
  9. move_s = ','
  10. move_se = '.'
  11. interact = ' '
  12. fight = '\t' -- attack or move toward nearest foe
  13. get = 'g' -- pick up items on floor
  14. equip = 'e' -- equip items
  15. -- remove = 'r' -- remove equipment
  16. ability = 'a' -- perform a character ability (spell, tech...)
  17. stuff = 's' -- show your inventory
  18. device = 'd' -- operate a device (wand, staff...)
  19. fire = 'f' -- launch a projectile
  20. rest = 'z' -- rest until something happens
  21. examine = 'x' -- look around
  22. consume = 'c' -- use a consumable item (food, pot, scroll...)
  23. read = 'r'
  24. quaff = 'q'
  25. map = '/' -- show dungeon map
  26. find = '^f' -- locate discovered items with a search query
  27. save = '^s' -- save and quit
  28. -- experiments
  29. eval = ':'
  30. scratch = '='