summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w2.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-24 02:37:22 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:17 +0300
commita5e3812174ab28ef6be83a17a11f1e1da4e6651a (patch)
tree34d30b6ca39e78f79891afc50422cf720138d31f /weatbag/tiles/n3w2.py
parentdda68706253ebfeb6113ab764670309e2b347411 (diff)
added some /n for teh l00ks!!1!
Diffstat (limited to 'weatbag/tiles/n3w2.py')
-rw-r--r--weatbag/tiles/n3w2.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/weatbag/tiles/n3w2.py b/weatbag/tiles/n3w2.py
index d1266f2..5c0add3 100644
--- a/weatbag/tiles/n3w2.py
+++ b/weatbag/tiles/n3w2.py
@@ -7,7 +7,7 @@ class Tile:
def describe(self):
if not self.give_catfood:
- print("You are at the beach and there is an old man with an "
+ print("\nYou 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 "
@@ -15,7 +15,7 @@ class Tile:
"some catfood so I can feed the kitties across in the "
"mainland!")
else:
- print("There's the old fisherman with his boat, he can take you "
+ print("\nThere's the old fisherman with his boat, he can take you "
"across if you like!")
# I only added words.use because player might
@@ -28,19 +28,19 @@ class Tile:
if self.give_catfood == False:
player.take('catfood')
self.give_catfood = True
- print("Great! Now we can sail!")
+ print("\nGreat! Now we can sail!")
else:
player.take('catfood')
- print("Oh how nice of you. You are the best!")
+ print("\nOh how nice of you. You are the best!")
elif len(do) > 1:
- print("I have no use for that.")
+ print("\nI have no use for that.")
else:
- print("Sorry, I don't understand.")
+ print("\nSorry, I don't understand.")
def leave(self, player, direction):
if direction=='e'and not self.give_catfood:
- print("You can't swim, remember the electric eels? You need a "
+ print("\nYou can't swim, remember the electric eels? You need a "
"transport to go across.")
return False
return True