-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextGame.py
More file actions
31 lines (22 loc) · 1.31 KB
/
textGame.py
File metadata and controls
31 lines (22 loc) · 1.31 KB
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
26
27
28
29
30
31
while True:
print('Welcome to the maze mirror game. We are trying to find the mystical casino by choosing doors. You have just entered the maze door, there is no goiung back')
print('You have two options at each step. Left or right. Go the correct way to keep playing for the the mystical casino. Go the wrong way and all the mirrors will cruch on you. Time starts now!!')
print('Stage one, There are two doors, one glass and the other wood. Which way would you go?')
one = input()
if one == 'right':
print('Good, you have gone the right way')
print('Welcome to stage two. This room has two doors, both are glass. Which one do you choose?')
two = input()
if two == 'left':
print('Yeah boy! 11 Feeling you')
print('Welcome to stage three. This room has no doors. Just walk through any wall to find the mystical casino')
three = input()
if three == 'right':
print('Genius! You are now at the casino')
elif three == 'left':
print('final stage and you failed')
elif two == 'right':
print('Bum head! Get out')
elif one == 'left':
print('You suck! Go home')
break