diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 22:05:33 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 22:05:33 +0300 |
| commit | 5857a4e2b49905b0f599b2edf3fe9619a2e7b5f2 (patch) | |
| tree | 2ad47e7dd663c895450eec6edf11787588a904fe | |
| parent | 1431ba0785d17d87bbed158c6fd3b2806d696e45 (diff) | |
small changes to describe
| -rw-r--r-- | weatbag/tiles/n1w5.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/weatbag/tiles/n1w5.py b/weatbag/tiles/n1w5.py index c6ef8dd..558c0dc 100644 --- a/weatbag/tiles/n1w5.py +++ b/weatbag/tiles/n1w5.py @@ -7,11 +7,12 @@ class Tile: def describe(self): if self.contents['rats']: - print("As you walk the path at the edge of the cliff you hear a " - "squeaking sound and you notice two rat traps on the ground. " - "Each are having one rat inside them trapped.\n" + print("As you walk the rocky path at the edge of the cliff you " + "hear a squeaking sound and you notice two rat traps on the " + "ground. Each are having one rat inside them trapped.\n" "You could take the nasty rodents but really... what the " - "hell are you gonna do with them?\n") + "hell are you gonna do with them?\n" + "Don't forget black death dear traveler!\n") else: print("You walk the path at the edge of the cliff. Nothing " "to do here.\n") @@ -24,7 +25,7 @@ class Tile: def take_rats(self, player): if transfer('rats', self.contents, player.inventory, n=2): - print("You take the rats.\n") + print("Ok then. You took the rats.\n") else: print("No more rats for now. Got to leave the traps do their " "job.\n") |
