summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n2w1.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-24 05:17:06 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:18 +0300
commite701a9388c8939c9ce91731bb32f8404340180ef (patch)
treeba0ed0c9292ba6162ab8775fc5df681779f466fd /weatbag/tiles/n2w1.py
parent7dca2041d3ee309dc86bd9b0d84d5e470d83eedb (diff)
improved new lines! Woah!
Diffstat (limited to 'weatbag/tiles/n2w1.py')
-rw-r--r--weatbag/tiles/n2w1.py36
1 files changed, 18 insertions, 18 deletions
diff --git a/weatbag/tiles/n2w1.py b/weatbag/tiles/n2w1.py
index 434f760..cf325b1 100644
--- a/weatbag/tiles/n2w1.py
+++ b/weatbag/tiles/n2w1.py
@@ -14,7 +14,7 @@ class Tile:
print("\nThey take you to the western island!")
def challenge(self):
- print("\nYou ask them to give it to you."
+ print("You ask them to give it to you."
"The little boy laughs and replies: \n"
"So you think you are brave enough to go to that island? "
"Very well, but we cannot give you our raft. "
@@ -26,43 +26,43 @@ class Tile:
"It takes double the time for my sister.\n"
"If we combine our powers, "
"how many minutes will it take to transfer you on the island?\n"
- "To make a guess, type a number followed by 'minutes'.")
+ "To make a guess, type a number followed by 'minutes'.\n")
def action(self, player, do):
if self.challenge_not_completed:
try:
if do[1] == "minutes":
if do[0] == self.minutes:
- print("\nYour guess have pleased me and my sister! "
+ print("Your guess have pleased me and my sister! "
"\nLet's go!")
- print("\nThe brother and sister will take you to the "
- "island.")
+ print("The brother and sister will take you to the "
+ "island.\n")
self.challenge_not_completed = False
else:
- print("\nWe're afraid this is not the correct answer. "
- "\nTry another one.")
+ print("We're afraid this is not the correct answer. "
+ "Try another one.\n")
elif (do[0] in words.take) and (do[1] == "sister" or
do[1] == "girl"):
- print("\nYou little bastard, leave my sister down!\n"
+ print("You bastard! Leave my sister down!\n"
"What kind of an asshole are you? Taking advantage of "
- "little children?\nWe will transfer you for free.")
- print("\nThe brother and sister take you to the island!")
+ "little children?\nWe will transfer you for free.\n")
+ print("The brother and sister take you to the island!\n")
self.challenge_not_completed = False
elif (do[0] in words.take) and (do[1] == "brother" or
do[1] == "boy"):
- print("\nYou bastard, take me down!"
- "\nWe will transfer you for free!")
- print("\nThe brother and sister take you to the island!")
+ print("You bastard, take me down!\n"
+ "We will transfer you for free!\n")
+ print("The brother and sister take you to the island!\n")
self.challenge_not_completed = False
elif (do[0] in words.take) and self.challenge_not_completed:
- print("\nI told you we won't give you our raft, "
- "you have to guess the correct amount of time!")
+ print("I told you we won't give you our raft, "
+ "you have to guess the correct amount of time!\n")
except:
- print("\nPlease try guessing a number, like '42 minutes'.")
+ print("Please try guessing a number, like '42 minutes'\n.")
def leave(self, player, direction):
if direction == "w" and self.challenge_not_completed:
- print ("\nYou can't go there by swimming, that part is full of "
- "electric eels.")
+ print ("You can't go there by swimming, that part is full of "
+ "electric eels.\n")
return False
else:
return True