diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 22:27:33 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 22:27:33 +0300 |
| commit | d64782af2b35d29c783b5687482209f6b42651ff (patch) | |
| tree | fb47ed7008f950cdc1c584723f474a5fda087da7 /weatbag/tiles/n2w6.py | |
| parent | ec9c3ac05aec0021f0dd5728e775c0e52f5d34db (diff) | |
added description (n2w6)
Diffstat (limited to 'weatbag/tiles/n2w6.py')
| -rw-r--r-- | weatbag/tiles/n2w6.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/weatbag/tiles/n2w6.py b/weatbag/tiles/n2w6.py index e76e3c2..919f230 100644 --- a/weatbag/tiles/n2w6.py +++ b/weatbag/tiles/n2w6.py @@ -1,15 +1,16 @@ class Tile: def describe(self): - print("blah blah describe\n") + print("Big rocks around the place, and the sound of small waves at the " + "weastern sea makes you calm! \n") def action(self, player, do): print("Sorry, I don't understand.\n") def leave(self, player, direction): if direction == "w": - print("My dear traveler, you can't go there, you will fall of the " - "cliff!\n") + print("My dear traveler, you can't fall of the cliff! " + "I won't let you do it.\n") return False elif direction == "n": print("It looks like the back of a wooden hut.\n" |
