summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n1w1.py
blob: 3203d9922d6a299bb9538cb3db9db251f04d636d (plain)
1
2
3
4
5
6
7
8
9
class Tile:
    def describe(self):
        print("There is a small island northwest.\n"
            "Unfortunatelly, you can't swim so you need a transport to go there.\n"
            "Luckilly to the north you see 2 children with a raft sitting "
            "under a tree." )
    
    def action(self, player, do):
        pass