summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/s2.py
blob: 474eb555c09472fc27a244230a4422534a271d67 (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 "
        "forward up a steep hillside. A rugged granite rock formation 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")