summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n1w3.py
diff options
context:
space:
mode:
Diffstat (limited to 'weatbag/tiles/n1w3.py')
-rw-r--r--weatbag/tiles/n1w3.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/weatbag/tiles/n1w3.py b/weatbag/tiles/n1w3.py
index 7aee7b4..081d41e 100644
--- a/weatbag/tiles/n1w3.py
+++ b/weatbag/tiles/n1w3.py
@@ -1,9 +1,7 @@
class Tile:
def describe(self):
- 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.")
+ print("Woooah! Those rocks are full of lichens!\n")
def action(self, player, do):
print("Sorry, I don't speak giberish.\n")
@@ -16,5 +14,6 @@ class Tile:
elif direction == "n":
print("The rocks are way to high for you. "
"Unfortunatelly you cannot climb them.")
+ return False
else:
return True