summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/s2.py
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-01-28 05:20:22 -0800
committerThomas Kluyver <takowl@gmail.com>2013-01-28 05:20:22 -0800
commit26abad862afefb0e6c598719545572e187fa9033 (patch)
treeecb3abeb12e3f33e7b30d41a5b4d0cb64c86f7dc /weatbag/tiles/s2.py
parentf19f86792b33beaf2e1e12989a85557ae7fbc29c (diff)
parentfb2bfc0966aac9833a37e44564a35a3c7631dc6f (diff)
Merge pull request #10 from gradi3nt/southern-tiles-1
Southern tiles 1
Diffstat (limited to 'weatbag/tiles/s2.py')
-rw-r--r--weatbag/tiles/s2.py16
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")
+
+