From 3e50c8f35ab3a40231498109d7401e0097fb1dd1 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 5 Jan 2013 17:12:31 +0000 Subject: Add first tile in each cardinal direction. --- weatbag/tiles/n1.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 weatbag/tiles/n1.py (limited to 'weatbag/tiles/n1.py') 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") -- cgit v1.3