#This file specifies the key bindings for this game. The bindings are all
#standard python bindings, and should be mostly obvious.
#If you're doing anything strange, see
#http://www.pythonware.com/library/tkinter/introduction/events-and-bindings.htm
#for more information on Python bindings.
up=<Up>
down=<Down>
left=<Left>
right=<Right>
action=<Return>
cancel=<Escape>

#In battle, do a standard attack.
attack=a
#In the main screen, save:
save=s
#In the main screen, quit:
quit=q
#In the main screen, open the inventory:
inv=i

#inv_right, inv_left are actually unused now.
#In the inventory, move to the next button:
inv_right=<Next>
#In the inventory, move to the previous button:
inv_left=<Prior>

#If using a cheating character, load the console in the main window.
load_console=~

#Number of lines for the message scroller in the main window.
#6 should be sized about right for 800x600.
message_lines = 6

#Difficulty: Easy=0, Normal=1, Hard=2.
difficulty=1
