diff options
Diffstat (limited to 'weatbag/tiles/s2.py')
| -rw-r--r-- | weatbag/tiles/s2.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/weatbag/tiles/s2.py b/weatbag/tiles/s2.py new file mode 100644 index 0000000..a66aa98 --- /dev/null +++ b/weatbag/tiles/s2.py @@ -0,0 +1,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") + + |
