summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/s3.py
blob: 1f377f199811913056ea2640549eabfaf29dfe48 (plain)
1
2
3
4
5
6
7
8
9
10
from weatbag import words

class Tile:
    def describe(self):
        print( "The foliage along the path begins to thin and you "
							 "notice that you are now climbing a gentle slope.")

    def action(self, player, do):
        # Nothing to do here yet.
        print("Sorry, I don't understand")