-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTreasure Island Game
More file actions
29 lines (27 loc) Β· 1.28 KB
/
Copy pathTreasure Island Game
File metadata and controls
29 lines (27 loc) Β· 1.28 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
print("""
_______________________
/ /|
/______________________/ |
| ________ | |
| | | | |
| | π°ππͺ | | |
| |________| | |
| | |
|_____________________| /
|_____________________|/
""")
print("ποΈ Welcome to Treasure Island ποΈ")
print("Your mission is to find the hidden treasure of the Golden Skull!\n")
n = input("You arrive at a forked jungle path. Do you take the 'mystic trail' or the 'dark cave'? ").lower()
if n == "mystic trail":
choice2 = input("You reach an enchanted river. Do you 'build a raft' or 'call the spirit eagle'? ").lower()
if choice2 == "call the spirit eagle":
choice3 = input("The eagle drops you at three ancient doors marked 'dragon', 'serpent', and 'phoenix'. Which do you choose? ").lower()
if choice3 == "phoenix":
print("π₯ The Phoenix door opens to a glowing chamber full of treasure! You win! π")
else:
print("πͺ The door traps you in a magical curse. Game Over.")
else:
print("π A flood sweeps your raft away. Game Over.")
else:
print("π¦ You are lost in the cave's darkness forever. Game Over.")