summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/s2.py
blob: a66aa98130d93e422429bcfdcd26e0ebdf3e6b02 (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")