blob: 5e0827361eb5819f7b03244a6d9792d6a8b1b35a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from weatbag import words
class Tile:
def describe(self):
print("You are inside the light house. You hear a clicking sound and "
"the door closes behind you.\nIt is dark, and an enormous cat "
"sits on a computer compiling felinux kernels.\n"
"You try to open the door and leave but you realize it is "
"locked.\n"
"The cat turns at you and hisses loudly.\n"
"She grawls and because you now speak cat, you understand what "
"she says.\n\n"
"Puny human, how dare you disturb my peace!\n"
"If you tell a lie I will hang you; if you tell the truth I will "
"shoot you.\n\n"
"It looks like you are condemned... Though if you think a bit "
"more there is an apropriate answer that gets your ass out of "
"this hell!")
def action(self, player, do):
print("I don't understand.")
#lighthouse
|