blob: db976feb2910ded2fbc5e6734f76399ef8cdf142 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
class Tile:
map_word = "Island beach"
def describe(self):
print("The beach is really quiet and you can hear and see the seagulls "
"on the sea.")
def action(self, player, do):
print("What is this gibberish?")
def leave(self, player, direction):
if direction == "e":
print("You can't go back by swimming, that part is full of "
"electric eels.\n")
return False
elif direction == "s":
print("I'm afraid I can't let you go there Dave.\n")
return False
elif direction == "w":
print("The sandy beach is transforming into big rocks but it looks "
"like you are able to climb them.\n"
"Just be careful because they are a bit slipery.")
return True
else:
return True
|