-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTreasure Hunt
62 lines (47 loc) · 2.05 KB
/
Treasure Hunt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#Solution
print('''
.-. .-. --..::==
( )( ) //" Writer: Ashish Shrivastav
'-' '-' /
________ ________ _________ ____________;_
- ______ \ - ______ \ / _____ //. . ._______/
/ / / // / / //_/ / // ___ /
/ / / // / / / .-'//_/|_/,-'
/ / / // / / / .-'.-'
/ / / // / / / / /
/ / / // / / / / /
/ /_____/ // /_____/ / / /
\________- \________- /_/
0000 0000 7777777777777777/========___________
00000000 00000000 7777^^^^^^^7777/ || || ___________
000 000 000 000 777 7777/=========//
000 000 000 000 7777// (( //
0000 0000 0000 0000 7777// \\ //
0000 0000 0000 0000 7777//========//
0000 0000 0000 0000 7777
0000 0000 0000 0000 7777
000 000 000 000 7777
000 000 000 000 77777
00000000 00000000 7777777
0000 0000 777777777
''')
print("Welcome Ashish! You are the new 007")
print("Your Mission is to find Treasure - Should you choose to accept it")
road = input('Please select the road which side you would like to go, "left" or "right": \n').lower()
# Choose Road Logic
if road == "left":
think = input('You have come to a Secret Place, "wait" for the Helicopter to pick you up or "run" to catch a car: \n')
# Choose Go-NO-GO Logic
if think == "wait":
button = input('You have reached the DESTINATION, select a button "RED", "BLUE", or "GREEN" to open the vault:\n')
# Choose Button Logic
if button == "RED":
print("GAME OVER! DIED WITHOUT OXYGEN")
elif button == "BLUE":
print("GAME OVER! BURNED BY FIRE AND DIED")
else:
print("CONGRATS! YOU FOUND THE TREASURE AND YOU ARE A BILLIONAIRE NOW")
else:
print("GAME OVER! HIT BY A CAR AND DEAD")
else:
print("GAME OVER! SHOT DEAD BY A SNIPER")