summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-24 04:16:04 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:18 +0300
commit17cbea2f24bcb5ab084ba0b70776490de29cb888 (patch)
tree9e37d5cc7ec6617658643cebd1879c23f81af445 /weatbag
parent829b5894b5b35e08e531fcd871bd8ac8648cfb45 (diff)
added leave function for n and a wall of kitties! (OMG! kitty ascii!!1!11)
Diffstat (limited to 'weatbag')
-rw-r--r--weatbag/tiles/n3w1.py29
1 files changed, 27 insertions, 2 deletions
diff --git a/weatbag/tiles/n3w1.py b/weatbag/tiles/n3w1.py
index 8ff6a6c..43986e3 100644
--- a/weatbag/tiles/n3w1.py
+++ b/weatbag/tiles/n3w1.py
@@ -6,12 +6,37 @@ class Tile:
print("\nSorry, I don't understand")
def leave(self, player, direction):
- if direction=='w':
+ if direction == 'w':
print("\nI'm afraid you can't go west.\nThe sea on that part is "
"fool of electric eels and you don't have a transport.")
return False
- elif direction=='e':
+ elif direction == 'e':
print("\nThere is the side of a cave in front of you.\nYou can't go "
"east.")
return False
+ elif direction == 'n':
+ print(" , , \n"
+ " _/(( \)\ \n"
+ " _.---. .' `\ / '. .---._ \n"
+ " .' ` ^ T= =P ^ ` '. \n"
+ " / \ .--' `--. / \ \n"
+ "| / )'-. .-'( \ | \n"
+ "; , <__..-( '-.) (.-' )-..__> , ; \n"
+ " \ \-.__) ``--._) (_.--`` (__.-/ / \n"
+ " '.'-.__.-. .-.__.-'.' \n"
+ " '-...-' '-...-' \n"
+ " , , \n"
+ " _/(( \)\ \n"
+ " _.---. .' `\ / '. .---._ \n"
+ " .' ` ^ T= =P ^ ` '. \n"
+ " / \ .--' `--. / \ \n"
+ "| / )'-. .-'( \ | \n"
+ "; , <__..-( '-.) (.-' )-..__> , ; \n"
+ " \ \-.__) ``--._) (_.--`` (__.-/ / \n"
+ " '.'-.__.-. .-.__.-'.' \n"
+ " '-...-' '-...-' \n")
+ print("A wall of kitties doesn't allow you to go North.\nBut that "
+ "doesn't make you mad... You can't be mad at kitties, "
+ "rite?!\n")
+ return False
return True