diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 15:32:10 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 15:32:10 +0300 |
| commit | c6f1148678477b5b8db33b7935b10522aa82fa2d (patch) | |
| tree | 87238dd63d3c766d5ac23a2d3ea6a3c5c06f5229 /weatbag | |
| parent | 673f378ebbb47734add83e061c0ebf46f117c9bd (diff) | |
moar \n and changed leave restriction description (n3w5)
Diffstat (limited to 'weatbag')
| -rw-r--r-- | weatbag/tiles/n3w5.py | 10 |
1 files 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 |
