Ejemplo n.º 1
0
	def enter(self, choices, answer):
		print "You enter a room with a stone floor. Each stone has a letter on it. Where do you step?"
		print 'Clue: The name of God'
		if puzzle.play(choices, answer):
			return 'bridge_room'
		else:
			print "The first stone collapses and you fall into a spiked pit"
			return 'dead'
Ejemplo n.º 2
0
	def enter(self, choices, answer):
		print "There is an abyss in front of you with an opening on the other side. It's very far away."
		print "Clue: Only in the leap from the lion's head will he prove his worth"
		if puzzle.play(choices, answer):
			return 'grail_room'
		else:
			print "You fall to your death"
			return 'dead'
Ejemplo n.º 3
0
	def enter(self, choices, answer):
		print 'You walk into a cave. There are straight grooves cut into the walls.'
		print 'Clue: Only the penitent man shall pass',
		if puzzle.play(choices, answer):
			return 'name_room'
		else:
			print "You get cut in half by massive blades that come out of the walls"
			return 'dead'
Ejemplo n.º 4
0
	def enter(self, choices, answer):
		print "There are 3 cups in front of you each in a different style. One is the cup of Christ."
		print 'Clue: Choose wisely'
		if puzzle.play(choices, answer):
			print "We're going to live forever!"
			exit(1)
		else:
			print "You chose...poorly."
			return 'dead'