summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n1.py
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-01-05 17:12:31 +0000
committerThomas Kluyver <takowl@gmail.com>2013-01-05 17:12:31 +0000
commit3e50c8f35ab3a40231498109d7401e0097fb1dd1 (patch)
tree8dce567ffe746ab7a46d482a0ef63c994d3d9502 /weatbag/tiles/n1.py
parent76d1149e6725ca8a59799e0c1f2112d3cbab5afb (diff)
Add first tile in each cardinal direction.
Diffstat (limited to 'weatbag/tiles/n1.py')
-rw-r--r--weatbag/tiles/n1.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/weatbag/tiles/n1.py b/weatbag/tiles/n1.py
new file mode 100644
index 0000000..1484ca4
--- /dev/null
+++ b/weatbag/tiles/n1.py
@@ -0,0 +1,8 @@
+class Tile:
+ def describe(self):
+ print("A path runs through dense jungle. To the north, you can see the "
+ "entrance to a cave.")
+
+ def action(self, player, do):
+ # Nothing to do here yet.
+ print("Sorry, I don't understand")