diff options
| -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" |
