diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-24 02:37:22 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:17 +0300 |
| commit | a5e3812174ab28ef6be83a17a11f1e1da4e6651a (patch) | |
| tree | 34d30b6ca39e78f79891afc50422cf720138d31f /weatbag/tiles/n2w1.py | |
| parent | dda68706253ebfeb6113ab764670309e2b347411 (diff) | |
added some /n for teh l00ks!!1!
Diffstat (limited to 'weatbag/tiles/n2w1.py')
| -rw-r--r-- | weatbag/tiles/n2w1.py | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/weatbag/tiles/n2w1.py b/weatbag/tiles/n2w1.py index 86f7323..434f760 100644 --- a/weatbag/tiles/n2w1.py +++ b/weatbag/tiles/n2w1.py @@ -6,15 +6,15 @@ class Tile: self.minutes = "40" def describe(self): - print("You see two children who you notice now are a boy and a girl.\n" - "They are playing and running around a raft.") + print("\nYou see two children who you notice now are a boy and a girl. " + "\nThey are playing and running around a raft.") if self.challenge_not_completed: self.challenge() else: - print("They take you to the western island!") + print("\nThey take you to the western island!") def challenge(self): - print("You ask them to give it to you." + print("\nYou 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. " @@ -24,44 +24,44 @@ class Tile: "It takes for me to transfer a person on the island exactly one " "hour.\n" "It takes double the time for my sister.\n" - "If we combine our powers " - "in how many minutes will we transfer you on the island?\n" - "To make a guess, type a number followed by 'minutes'") + "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'.") def action(self, player, do): if self.challenge_not_completed: try: if do[1] == "minutes": if do[0] == self.minutes: - print("Your guess have pleased me and my sister! " - "Let's go!") - print("The brother and sister will take you to the " - "island.") + print("\nYour guess have pleased me and my sister! " + "\nLet's go!") + print("\nThe brother and sister will take you to the " + "island.") self.challenge_not_completed = False else: - print("We're afraid this is not the correct answer. " - "Try another one.") + print("\nWe're afraid this is not the correct answer. " + "\nTry another one.") elif (do[0] in words.take) and (do[1] == "sister" or do[1] == "girl"): - print("You little 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("The brother and sister take you to the island!") + print("\nYou little 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!") self.challenge_not_completed = False elif (do[0] in words.take) and (do[1] == "brother" or do[1] == "boy"): - print("You bastard, take me down!\n" - "We will transfer you for free!") - print("The brother and sister take you to the island!") + print("\nYou bastard, take me down!" + "\nWe will transfer you for free!") + print("\nThe brother and sister take you to the island!") self.challenge_not_completed = False elif (do[0] in words.take) and self.challenge_not_completed: - print("I told you we won't give you our raft, " + print("\nI told you we won't give you our raft, " "you have to guess the correct amount of time!") except: - print("Please try guessing a number, like '42 minutes'.") + print("\nPlease try guessing a number, like '42 minutes'.") def leave(self, player, direction): if direction == "w" and self.challenge_not_completed: - print ("You can't go there by swimming, that part is full of " + print ("\nYou can't go there by swimming, that part is full of " "electric eels.") return False else: |
