diff options
| -rw-r--r-- | weatbag/tiles/n1w2.py | 3 | ||||
| -rw-r--r-- | weatbag/tiles/n1w3.py | 3 | ||||
| -rw-r--r-- | weatbag/tiles/n1w4.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n1w5.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n1w6.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n2w6.py | 1 | ||||
| -rw-r--r-- | weatbag/tiles/n3w5.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n3w6.py | 1 | ||||
| -rw-r--r-- | weatbag/tiles/n4w5.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n4w6.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n4w7.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n5w5.py | 4 | ||||
| -rw-r--r-- | weatbag/tiles/n5w6.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/n5w7.py | 2 |
14 files changed, 27 insertions, 3 deletions
diff --git a/weatbag/tiles/n1w2.py b/weatbag/tiles/n1w2.py index 63fec34..db976fe 100644 --- a/weatbag/tiles/n1w2.py +++ b/weatbag/tiles/n1w2.py @@ -1,5 +1,6 @@ class Tile: - + map_word = "Island beach" + def describe(self): print("The beach is really quiet and you can hear and see the seagulls " "on the sea.") diff --git a/weatbag/tiles/n1w3.py b/weatbag/tiles/n1w3.py index 3c8905c..52d1cb9 100644 --- a/weatbag/tiles/n1w3.py +++ b/weatbag/tiles/n1w3.py @@ -1,5 +1,6 @@ class Tile: - + map_word = "Beach rocks" + def describe(self): print("Woooah! Those rocks are full of lichens!\n") diff --git a/weatbag/tiles/n1w4.py b/weatbag/tiles/n1w4.py index 22e2fb0..c427e9f 100644 --- a/weatbag/tiles/n1w4.py +++ b/weatbag/tiles/n1w4.py @@ -1,6 +1,8 @@ from weatbag.utils import transfer class Tile: + map_word = "Persian cat" + def __init__(self): self.contents = {'neko': 1} self.challenge_completed = False diff --git a/weatbag/tiles/n1w5.py b/weatbag/tiles/n1w5.py index 2f308cb..a6738b9 100644 --- a/weatbag/tiles/n1w5.py +++ b/weatbag/tiles/n1w5.py @@ -2,6 +2,8 @@ from weatbag import words from weatbag.utils import transfer class Tile: + map_word = "Mouse traps" + def __init__(self): self.contents = {'mice': 2} diff --git a/weatbag/tiles/n1w6.py b/weatbag/tiles/n1w6.py index 7c8438f..67f2d47 100644 --- a/weatbag/tiles/n1w6.py +++ b/weatbag/tiles/n1w6.py @@ -1,4 +1,6 @@ class Tile: + map_word = "Top cliff" + def describe(self): print("You have reached the top of the cliff! You feel the fresh " "breeze in your face and you smell the salty sea! The view and " diff --git a/weatbag/tiles/n2w6.py b/weatbag/tiles/n2w6.py index 15e1610..2ce54a6 100644 --- a/weatbag/tiles/n2w6.py +++ b/weatbag/tiles/n2w6.py @@ -1,4 +1,5 @@ class Tile: + map_word = "Cliff" def describe(self): print("Big rocks around the place, and the sound of small waves at the " diff --git a/weatbag/tiles/n3w5.py b/weatbag/tiles/n3w5.py index 8fa9be3..e1587bb 100644 --- a/weatbag/tiles/n3w5.py +++ b/weatbag/tiles/n3w5.py @@ -2,6 +2,8 @@ from weatbag import words from weatbag.utils import transfer class Tile: + map_word = "Box riddle" + def __init__(self): self.contents = {'knife': 1} self.challenge_completed = False diff --git a/weatbag/tiles/n3w6.py b/weatbag/tiles/n3w6.py index c4c5b6c..c5a03be 100644 --- a/weatbag/tiles/n3w6.py +++ b/weatbag/tiles/n3w6.py @@ -1,4 +1,5 @@ class Tile: + map_word = "Beach rocks" def describe(self): print("Rocks. Big rocks. Slippery rocks all over!\n") diff --git a/weatbag/tiles/n4w5.py b/weatbag/tiles/n4w5.py index 0344000..95971e3 100644 --- a/weatbag/tiles/n4w5.py +++ b/weatbag/tiles/n4w5.py @@ -1,4 +1,6 @@ class Tile: + map_word = "Pine forest" + def describe(self): print("There are not so many trees around but the ground is full of " "pine needles and pine cones.\n") diff --git a/weatbag/tiles/n4w6.py b/weatbag/tiles/n4w6.py index c0f5129..755a78a 100644 --- a/weatbag/tiles/n4w6.py +++ b/weatbag/tiles/n4w6.py @@ -1,4 +1,6 @@ class Tile: + map_word = "Beach curve" + def describe(self): print("The beach makes a nice little curve on that spot. There are " "some pine trees around too. A really quiet sceenery!\n") diff --git a/weatbag/tiles/n4w7.py b/weatbag/tiles/n4w7.py index f1e40e9..6850196 100644 --- a/weatbag/tiles/n4w7.py +++ b/weatbag/tiles/n4w7.py @@ -2,6 +2,8 @@ from weatbag import words from weatbag.utils import transfer class Tile: + map_word = "Kitties" + def __init__(self): self.challenge_completed = False 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() diff --git a/weatbag/tiles/n5w6.py b/weatbag/tiles/n5w6.py index f1121d6..b739479 100644 --- a/weatbag/tiles/n5w6.py +++ b/weatbag/tiles/n5w6.py @@ -1,4 +1,6 @@ class Tile: + map_word = "Beach" + def describe(self): print("You walk in the beach. There is a light house on the west.\n") diff --git a/weatbag/tiles/n5w7.py b/weatbag/tiles/n5w7.py index ca39186..f38501c 100644 --- a/weatbag/tiles/n5w7.py +++ b/weatbag/tiles/n5w7.py @@ -1,6 +1,8 @@ from weatbag import words class Tile: + map_word = "Lighthouse" + def __init__(self): self.trapped = True |
