diff options
Diffstat (limited to 'weatbag')
| -rw-r--r-- | weatbag/tiles/n1w2.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/weatbag/tiles/n1w2.py b/weatbag/tiles/n1w2.py index 0961545..4dfa3cb 100644 --- a/weatbag/tiles/n1w2.py +++ b/weatbag/tiles/n1w2.py @@ -15,5 +15,10 @@ class Tile: elif direction == "s": print("I'm afraid I can't let you go there Dave.\n") return False + elif direction == "w": + print("The sandy beach is transforming into big rocks but it looks " + "like you are able to climb them.\n" + "Just be carefull because they are a bit slipery.") + return True else: return True |
