summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w1.py
blob: 5eb7d18a90d865dcc2b70c08f9fa5aeed323b741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Tile:
    def describe(self):
        print("The beach is quiet. You see on the south children playing.")
    
    def action(self, player, do):
        print("Sorry, I don't understand")
        
    def leave(self, player, direction):
        if direction=='w':
            print("I'm afraid you can't go west.\nThe sea on that part is "
                  "fool of electric eels and you don't have a transport.")
            return False
        elif direction=='e':
            print("There is the side of a cave in front of you.\nYou can't go "
                  "east.")
            return False
        return True