summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-05-07 21:31:03 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-05-07 21:31:03 +0300
commit8b8b42308fdca3ec3e40695539bde6df3a59c7de (patch)
tree8a58b4cf728634ff4e5b053aee27d865a225aba4
parentf838ee7fa1a4107f5d23a26cafa011e9168cc173 (diff)
added new tile n1w6
-rw-r--r--weatbag/tiles/n1w6.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/weatbag/tiles/n1w6.py b/weatbag/tiles/n1w6.py
new file mode 100644
index 0000000..7c3d799
--- /dev/null
+++ b/weatbag/tiles/n1w6.py
@@ -0,0 +1,15 @@
+class Tile:
+
+ def describe(self):
+ print("blah blah describe\n")
+
+ def action(self, player, do):
+ print("Sorry, I don't understand.\n")
+
+ def leave(self, player, direction):
+ if direction in ('s', 'w'):
+ print("My dear traveler, you can't go there, you will fall of the "
+ "cliff!\n")
+ return False
+ else:
+ return True