diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-28 20:28:43 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:18 +0300 |
| commit | 1b0c626c3659573edab6a5f97d9fc251332b7bd5 (patch) | |
| tree | 11d33f4a9739d4aafb63879b4aadcb1ec8f04cb4 /weatbag/tiles/n3w1.py | |
| parent | 6fa5120b4046a73867d793b9b8ba2fc0dba2adc2 (diff) | |
rephrased various output strings
Diffstat (limited to 'weatbag/tiles/n3w1.py')
| -rw-r--r-- | weatbag/tiles/n3w1.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/weatbag/tiles/n3w1.py b/weatbag/tiles/n3w1.py index a5e05b9..aec7508 100644 --- a/weatbag/tiles/n3w1.py +++ b/weatbag/tiles/n3w1.py @@ -1,6 +1,6 @@ class Tile: def describe(self): - print("The beach is quiet. On the south are children playing.\n") + print("The beach is quiet. To the south children are playing.\n") def action(self, player, do): print("wo0t w0ot?! o_O") @@ -8,11 +8,10 @@ class Tile: def leave(self, player, direction): if direction == 'w': print("I'm afraid you can't go west.\nThe sea on that part is " - "fool of electric eels and you don't have a transport.\n") + "full of electric eels and you don't have a transport.\n") return False elif direction == 'e': - print("There is the side of a cave in front of you.\nYou can't go " - "east.\n") + print("There's a steep mountainside here which you can't climb.") return False elif direction == 'n': print(" , , \n" |
