summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n5w5.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-05-20 15:52:33 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-05-20 15:52:33 +0300
commit370d19e493d9cd74fa15cd1580b7b7a5246a602f (patch)
treeac92cf9c32f54961dd119acedbf27fd82abfb976 /weatbag/tiles/n5w5.py
parentc6f1148678477b5b8db33b7935b10522aa82fa2d (diff)
added map_world
Diffstat (limited to 'weatbag/tiles/n5w5.py')
-rw-r--r--weatbag/tiles/n5w5.py4
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()