-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay 03 - Treasure Island
46 lines (43 loc) · 2.81 KB
/
Day 03 - Treasure Island
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
#Day 3: Create a "Choose your own adventure" game, which would allow the user to make their own choices on this Treasure Island.
print('''
*******************************************************************************
| | | |
_________|________________.=""_;=.______________|_____________________|_______
| | ,-"_,="" `"=.| |
|___________________|__"=._o`"-._ `"=.______________|___________________
| `"=._o`"=._ _`"=._ |
_________|_____________________:=._o "=._."_.-="'"=.__________________|_______
| | __.--" , ; `"=._o." ,-"""-._ ". |
|___________________|_._" ,. .` ` `` , `"-._"-._ ". '__|___________________
| |o`"=._` , "` `; .". , "-._"-._; ; |
_________|___________| ;`-.o`"=._; ." ` '`."\` . "-._ /_______________|_______
| | |o; `"-.o`"=._`` '` " ,__.--o; |
|___________________|_| ; (#) `-.o `"=.`_.--"_o.-; ;___|___________________
____/______/______/___|o;._ " `".o|o_.--" ;o;____/______/______/____
/______/______/______/_"=._o--._ ; | ; ; ;/______/______/______/_
____/______/______/______/__"=._o--._ ;o|o; _._;o;____/______/______/____
/______/______/______/______/____"=._o._; | ;_.--"o.--"_/______/______/______/_
____/______/______/______/______/_____"=.o|o_.--""___/______/______/______/____
/______/______/______/______/______/______/______/______/______/______/_____ /
*******************************************************************************
''')
print("Welcome to Treasure Island.")
print("Your mission is to find the treasure.")
#https://www.draw.io/?lightbox=1&highlight=0000ff&edit=_blank&layers=1&nav=1&title=Treasure%20Island%20Conditional.drawio#Uhttps%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1oDe4ehjWZipYRsVfeAx2HyB7LCQ8_Fvi%26export%3Ddownload
leftorright = input("You're at a crossroad. Where do you want to go? Type 'left' or 'right'.\n").lower()
if leftorright == 'right':
print("Oops, you've fallen into a hole. Game over.")
else:
swimorwait = input("You've come to a lake. There is an island in the middle of the lake. Type 'wait' to wait for a boat or 'swim' to swim across.\n").lower()
if swimorwait == 'wait':
whichdoor = input("You arrive at the island unharmed. There is a house with 3 doors. One red, one yellow, and one blue. Which door do you choose?\n").lower()
if whichdoor == 'blue':
print("Oops, you've been eaten by beasts. Game over.")
elif whichdoor == 'red':
print("Oops, you've been burned by fire. Game over.")
elif whichdoor == 'yellow':
print("You Win!")
else:
print("How did you get here? Game over.")
else:
print("Oops, you've been attacked by trout. Game over.")