blob: e76e3c238543a0cfb7fd5498ff44fb064c94b618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class Tile:
def describe(self):
print("blah blah describe\n")
def action(self, player, do):
print("Sorry, I don't understand.\n")
def leave(self, player, direction):
if direction == "w":
print("My dear traveler, you can't go there, you will fall of the "
"cliff!\n")
return False
elif direction == "n":
print("It looks like the back of a wooden hut.\n"
"Since you don't walk though walls (yet) "
"you can't go there.\n")
return False
else:
return True
|