diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-14 01:41:36 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-14 01:41:36 +0300 |
| commit | af8d37fddf448f96a465051e517fd79c197ecafc (patch) | |
| tree | 873e5ff598d82f9564febe6d8f35e924ca8be361 | |
| parent | 8133da54eea1dc82e2b9421b2b06bb6cdbcae3ae (diff) | |
added new tile n3w5
| -rw-r--r-- | weatbag/tiles/n3w5.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/weatbag/tiles/n3w5.py b/weatbag/tiles/n3w5.py new file mode 100644 index 0000000..a99fd88 --- /dev/null +++ b/weatbag/tiles/n3w5.py @@ -0,0 +1,17 @@ +from weatbag import words +from weatbag.utils import transfer + +class Tile: + def __init__(self): + self.challenge_completed = False + + def describe(self): + print("\n") + + + def action(self, player, do): + print("\n") + self.challenge_completed = True + else: + print("I don't understand.") + |
