summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
Diffstat (limited to 'weatbag')
-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