summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/s2.py
blob: 59f66e2de6da2cc299ad75ae4c47823682101ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11

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")