More graphical updates
[butaba-adventures.git] / constants.py
1 # constants for in-game use
2
3 # butaba constants
4 MAXITEMS = 8
5 MAXHEALTH = 100
6
7
8 # describing the orientation of characters
9 LEFT = 0
10 RIGHT = 2
11 FRONT = 1
12 BACK = 3
13
14 # key ids and lock ids
15 KEY_CHEST1 = 1000
16 KEY_CHEST2 = 1001
17
18
19 # maximum experience points reached by achieving certain actions
20
21 # maximum knowledge to be gained by unlocking chests
22 KNOWLEDGEMAX_CHEST_UNLOCK = 2
23
24 # maximum strength to be gained by draw water from well
25 STRENGTHMAX_DRAW_WELL_WATER = 3