summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--weatbag/tiles/n3w5.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/weatbag/tiles/n3w5.py b/weatbag/tiles/n3w5.py
new file mode 100644
index 0000000..a99fd88
--- /dev/null
+++ b/weatbag/tiles/n3w5.py
@@ -0,0 +1,17 @@
+from weatbag import words
+from weatbag.utils import transfer
+
+class Tile:
+ def __init__(self):
+ self.challenge_completed = False
+
+ def describe(self):
+ print("\n")
+
+
+ def action(self, player, do):
+ print("\n")
+ self.challenge_completed = True
+ else:
+ print("I don't understand.")
+