diff options
| author | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-20 00:21:17 +0300 |
|---|---|---|
| committer | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-20 00:21:17 +0300 |
| commit | d345a724c004cf2622e67949eb35d549f78d134f (patch) | |
| tree | bc410049df6cab9aebf1ab163bc82a37ca1e930e | |
| parent | 41604b6535155bc71d05c93419e4639395d7a9d4 (diff) | |
added south leave text for e1
| -rw-r--r-- | weatbag/tiles/e1.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/weatbag/tiles/e1.py b/weatbag/tiles/e1.py index 39f73e5..55fe4cc 100644 --- a/weatbag/tiles/e1.py +++ b/weatbag/tiles/e1.py @@ -23,3 +23,10 @@ class Tile: print("Reaching up, you pick the berries.") else: print("There are no berries here.") + + def leave(self,player,direction): + if direction == 's': + print("You decide the path is too boring for you,\n" + "so you follow the stream south, looking for adventure!") + input() + return True |
