summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
Diffstat (limited to 'weatbag')
-rw-r--r--weatbag/tiles/n2w2.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/weatbag/tiles/n2w2.py b/weatbag/tiles/n2w2.py
index 6cfc252..35643c9 100644
--- a/weatbag/tiles/n2w2.py
+++ b/weatbag/tiles/n2w2.py
@@ -4,14 +4,19 @@ class Tile:
def describe(self):
if self.first_visit:
- print("You are now on the island. In front of you there are "
- "some trees and a small path.\nFeeling adventurous?\n")
+ print("You are now on the island. The children are returning back "
+ "to the mainland with their raft.\n"
+ "In front of you there are some trees and a small path.\n"
+ "Feeling adventurous?\n")
self.first_visit = False
else:
print("The beach is quiet. Nothing seems to be going on.")
def action(self, player, do):
- print("Sorry, wat?!")
+ if do[0] in ('Yes', 'yes', 'y', 'Y'):
+ print("Awesome! Follow the path!")
+ else:
+ print("Sorry, wat?!")
def leave(self, player, direction):
if direction == "e":