summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--weatbag/tiles/s1.py2
-rw-r--r--weatbag/tiles/s2.py11
2 files changed, 12 insertions, 1 deletions
diff --git a/weatbag/tiles/s1.py b/weatbag/tiles/s1.py
index efdc041..c12ac9b 100644
--- a/weatbag/tiles/s1.py
+++ b/weatbag/tiles/s1.py
@@ -1,6 +1,6 @@
class Tile:
def describe(self):
- print("You push through the undergrowth - there's hardly a path here at all.")
+ print("You push through the undergrowth - the path is overgrown but continues on..")
def action(self, player, do):
# Nothing to do here yet.
diff --git a/weatbag/tiles/s2.py b/weatbag/tiles/s2.py
new file mode 100644
index 0000000..59f66e2
--- /dev/null
+++ b/weatbag/tiles/s2.py
@@ -0,0 +1,11 @@
+
+from weatbag import words
+
+class Tile:
+ def describe(self):
+ print( "The foliage along the path begins to thin and you "
+ "notice that you are now climbing a gentle slope.")
+
+ def action(self, player, do):
+ # Nothing to do here yet.
+ print("Sorry, I don't understand")