summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w2.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/n3w2.py
parent7dca2041d3ee309dc86bd9b0d84d5e470d83eedb (diff)
improved new lines! Woah!
Diffstat (limited to 'weatbag/tiles/n3w2.py')
-rw-r--r--weatbag/tiles/n3w2.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/weatbag/tiles/n3w2.py b/weatbag/tiles/n3w2.py
index 989cb6c..a5c46cd 100644
--- a/weatbag/tiles/n3w2.py
+++ b/weatbag/tiles/n3w2.py
@@ -7,16 +7,16 @@ class Tile:
def describe(self):
if not self.give_catfood:
- print("\nYou are at the beach and there is an old man with an "
+ print("You are at the beach and there is an old man with an "
"enormous beard that is getting his little boat ready to go "
"across to the mainland.\nNaturally, you are asking him to "
"take you in his boat.\nThe old man replies:\nOf course I "
"can take you with me, my dear adventurer but first I need "
"some catfood so I can feed the kitties across in the "
- "mainland!")
+ "mainland!\n")
else:
- print("\nThere's the old fisherman with his boat, he can take you "
- "across if you like!")
+ print("There's the old fisherman with his boat, he can take you "
+ "across if you like!\n")
# I only added words.use because player might
# use the word "use" insteed of "give".
@@ -28,20 +28,20 @@ class Tile:
if self.give_catfood == False:
player.take('catfood')
self.give_catfood = True
- print("\nGreat! Now we can sail!")
+ print("Great! Now we can sail!\n")
else:
player.take('catfood')
- print("\nOh how nice of you. You are the best!")
+ print("Oh how nice of you. You are the best!\n")
elif len(do) > 1:
- print("\nI have no use for that.")
+ print("I have no use for that.\n")
else:
- print("\nSorry, I don't understand.")
+ print("Sorry, I don't understand.\n")
def leave(self, player, direction):
if direction == 'e'and not self.give_catfood:
- print("\nYou can't swim, remember the electric eels? You need a "
- "transport to go across.")
+ print("You can't swim, remember the electric eels? You need a "
+ "transport to go across.\n")
return False
if direction == 'n':
print("Nothing to do there.\n")