diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 20:44:38 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 20:44:38 +0300 |
| commit | b63dacba14d8a976e52771143d85f80c523ed416 (patch) | |
| tree | 638f1d884e72cc1a7b0896e1e7824a2329f6b27e /weatbag/tiles/n1w3.py | |
| parent | 8e7a553724195d5fe5d57f36ecbd3f5b96bfdd4a (diff) | |
grammar and orthography
Diffstat (limited to 'weatbag/tiles/n1w3.py')
| -rw-r--r-- | weatbag/tiles/n1w3.py | 5 |
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 |
