summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/s2.py
blob: 13b6d83171ec50b2d2dc3a4bee6cf5008297dddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

from weatbag import words

class Tile:
  
  def describe(self):
    print("To the South, the foliage begins to thin and the path winds "
        "forwards up a steep hillside. A rugged granite rockformation tops "
        "the hill, its centerpiece two slabs of rock leaning together "
        "to form a crude arch." )

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