diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 19:28:03 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 19:28:03 +0300 |
| commit | 12d7f328327084039efb117906c8b66091b31c46 (patch) | |
| tree | 67973d8b9d495a3401b717cb4a83e318d18256c5 | |
| parent | c4b8a55485366711a97d23332b4b4e36f85d7198 (diff) | |
added describe
| -rw-r--r-- | weatbag/tiles/n1w4.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/weatbag/tiles/n1w4.py b/weatbag/tiles/n1w4.py index 1fc522d..5504a57 100644 --- a/weatbag/tiles/n1w4.py +++ b/weatbag/tiles/n1w4.py @@ -3,11 +3,13 @@ class Tile: self.challenge_completed = False def describe(self): - print("\n") + print("The rocks led you to a path uphill.\n*Poof* A purrr-sian cat " + "appears in front of you!\n") if not self.challenge_completed: self.challenge() else: - print("") + print("The rocks led you to a path uphill.\nIt's a little bit " + "windy and a flock of seagulls is flying above you.") def challenge(self): print("\n") |
