diff options
Diffstat (limited to 'weatbag')
| -rw-r--r-- | weatbag/tiles/n4w6.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/weatbag/tiles/n4w6.py b/weatbag/tiles/n4w6.py index 2c7fa18..c0f5129 100644 --- a/weatbag/tiles/n4w6.py +++ b/weatbag/tiles/n4w6.py @@ -5,3 +5,14 @@ class Tile: def action(self, player, do): print("Sorry, I don't understand.\n") + + def leave(self, player, direction): + if direction == "s": + print("You follow the path uphill. There are some rocks. Just be " + "careful, they all have this gooey green stuff on them!\n") + return True + elif direction == "e": + print("You are going through the pine trees.\n") + return True + else: + return True |
