From 0e7d8f5218800643115b6d127356949f4574a0e0 Mon Sep 17 00:00:00 2001 From: Julian Irwin Date: Tue, 8 Jan 2013 21:32:24 -0600 Subject: Added s2 (basically stub). I plan to add some adventures in this direction. --- weatbag/tiles/s1.py | 2 +- weatbag/tiles/s2.py | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 weatbag/tiles/s2.py (limited to 'weatbag') 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") -- cgit v1.3