X-Git-Url: https://harishankar.org/repos/?p=butaba-adventures.git;a=blobdiff_plain;f=constants.py;h=a37f3d36db63c0afd745dc1d0e5437f2576110fd;hp=bc9e73760c09ce9893eb67ca8d50b73066fd59c3;hb=801df507f5d5ba807b2f6dba334ab2028ce4c3a5;hpb=6552a4a3522d0b48177a9c2ebedda92b824874f7 diff --git a/constants.py b/constants.py index bc9e737..a37f3d3 100644 --- a/constants.py +++ b/constants.py @@ -1,5 +1,16 @@ # constants for in-game use +# butaba constants +MAXITEMS = 8 +MAXHEALTH = 100 + + +# describing the orientation of characters +LEFT = 0 +RIGHT = 2 +FRONT = 1 +BACK = 3 + # key ids and lock ids KEY_CHEST1 = 1000 KEY_CHEST2 = 1001 @@ -8,4 +19,7 @@ KEY_CHEST2 = 1001 # maximum experience points reached by achieving certain actions # maximum knowledge to be gained by unlocking chests -KNOWLEDGEMAX_CHEST_UNLOCK = 2 \ No newline at end of file +KNOWLEDGEMAX_CHEST_UNLOCK = 2 + +# maximum strength to be gained by draw water from well +STRENGTHMAX_DRAW_WELL_WATER = 3 \ No newline at end of file