From c6f1148678477b5b8db33b7935b10522aa82fa2d Mon Sep 17 00:00:00 2001 From: Kleopatra Angelidi Date: Mon, 20 May 2013 15:32:10 +0300 Subject: moar \n and changed leave restriction description (n3w5) --- weatbag/tiles/n3w5.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/weatbag/tiles/n3w5.py b/weatbag/tiles/n3w5.py index b339261..8fa9be3 100644 --- a/weatbag/tiles/n3w5.py +++ b/weatbag/tiles/n3w5.py @@ -21,15 +21,15 @@ class Tile: "-------\n" "0_2345\n\n" "You try to open the box but it won't open.\n" - "Now... as you might have guessed already, it is a magic box! " + "Now... as you might have guessed already, it is a magic box!\n" "If you *understand* what these carvings represent the box will " - "open!") + "open!\n") # What the riddle says is "No one understands" def action(self, player, do): if do[0] == "no" and do[1] == "one" and do[2] == "understands": print("And that is absolutely right!\n" - "The lid opens and you see a brand new army knife!") + "The lid opens and you see a brand new army knife!\n") elif (do[0] in words.take) and ('knife' in do): self.take_knife(player, do) @@ -45,8 +45,8 @@ class Tile: def leave(self, player, direction): if direction == "s": - print("In front of you there is a wall. It's the side of a wooden " - "hut.") + print("You can't go there, it's a wall. It looks like the side of " + "a wooden hut.\n") return False else: return True -- cgit v1.3