diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 14:43:46 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 14:43:46 +0300 |
| commit | 0245ad8d8937bf17d22db6197a8fa904a52fd831 (patch) | |
| tree | cbcfef64dc242f714ab6f73701cd9a081e369648 /weatbag/tiles | |
| parent | f9c0237d94d3ec43861c44c97427734785bf13c0 (diff) | |
changed challenge description about cat (n1w4)
Diffstat (limited to 'weatbag/tiles')
| -rw-r--r-- | weatbag/tiles/n1w4.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/weatbag/tiles/n1w4.py b/weatbag/tiles/n1w4.py index d9e9b74..dde04fc 100644 --- a/weatbag/tiles/n1w4.py +++ b/weatbag/tiles/n1w4.py @@ -8,12 +8,13 @@ class Tile: def describe(self): if not self.challenge_completed: - print("The rocks led you to a path uphill.\n*Poof* A purrr-sian " - "cat appears in front of you!\n") + print("*Poof* A purrr-sian cat appears in front of you!\n") self.challenge() else: - print("The rocks led you to a path uphill.\nIt's a little bit " - "windy and a flock of seagulls is flying above you.") + print("Some pawprints on the ground probably from the persian cat " + "you encountered earlier.\n" + "It's a little bit windy and a flock of seagulls is flying " + "above you.\n") def challenge(self): print("Meow good traveler! I have a question for you.\n" @@ -41,7 +42,9 @@ class Tile: print("You are a clever human, aren't you?!\n\n" "Here is my offering. I give you this maneki-neko.\n" "If you ever come across a wall of kittens and you want " - "them to let you pass you will use this lucky charm!") + "them to let you pass you will use this lucky charm!\n\n" + "And as the cat says these words, " + "*poof* she disappears!\n") #https://en.wikipedia.org/wiki/Maneki-neko self.contents['neko'] -= 1 player.give('neko') |
