diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 15:52:33 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 15:52:33 +0300 |
| commit | 370d19e493d9cd74fa15cd1580b7b7a5246a602f (patch) | |
| tree | ac92cf9c32f54961dd119acedbf27fd82abfb976 /weatbag/tiles/n5w5.py | |
| parent | c6f1148678477b5b8db33b7935b10522aa82fa2d (diff) | |
added map_world
Diffstat (limited to 'weatbag/tiles/n5w5.py')
| -rw-r--r-- | weatbag/tiles/n5w5.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weatbag/tiles/n5w5.py b/weatbag/tiles/n5w5.py index eed7c1c..c5e214b 100644 --- a/weatbag/tiles/n5w5.py +++ b/weatbag/tiles/n5w5.py @@ -2,13 +2,15 @@ from weatbag import words from weatbag.utils import transfer class Tile: + map_word = "Kiosk" + def __init__(self): self.contents = {"cream": 1} self.challenge_completed = False def describe(self): print("You are on the beach. You see a small kiosk selling " - "ice creams!\n") + "ice cream!\n") if not self.challenge_completed: self.challenge() |
