summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/w1.py
diff options
context:
space:
mode:
Diffstat (limited to 'weatbag/tiles/w1.py')
-rw-r--r--weatbag/tiles/w1.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/weatbag/tiles/w1.py b/weatbag/tiles/w1.py
new file mode 100644
index 0000000..6f9119e
--- /dev/null
+++ b/weatbag/tiles/w1.py
@@ -0,0 +1,16 @@
+class Tile:
+
+ def describe(self):
+ print("The trees open out onto a beautiful beach. Small waves lap at the "
+ "sand. Ahead of you, the ocean stretches as far as you can see.")
+
+ def action(self, player, do):
+ # Nothing to do here yet.
+ print("Sorry, I don't understand")
+
+ def leave(self, player, direction):
+ if direction=='w':
+ print("You've forgotten how to swim")
+ return False
+ return True
+