diff options
| -rw-r--r-- | weatbag/tiles/s1e1.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/weatbag/tiles/s1e1.py b/weatbag/tiles/s1e1.py index 9f96e6b..74a0aa0 100644 --- a/weatbag/tiles/s1e1.py +++ b/weatbag/tiles/s1e1.py @@ -11,11 +11,19 @@ class Tile: "It runs from South to North.") if self.contents['bug'] > 0: - print("You see a huge ugly bug rush past you, " + print("You see a huge, ugly bug rush past you, " "following the river south.") self.contents['bug'] -= 1 else: - print("You remember this is where you saw that bug going south") + print("You remember this is where you saw that bug going south.") def action(self, player, do): pass + + def leave(self, player, direction): + if direction == 's': + print("Bugs are the enemy and must be crushed!" + "So you decide to follow the bug upstream.") + return True + else: + return True |
