# Author: Evan Arias
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.")
choiceOne = input("You wake up on the beach. Do you want to go left or right?: ")
if choiceOne == "Right" or choiceOne == "right":
print("You step on a land mine and blow up. Game over!")
elif choiceOne == "left" or choiceOne == "Left":
choiceTwo = input("You find a map with directions. Do you follow them? Yes or No: ")
if choiceTwo == "No" or choiceTwo == "no":
print("You wander around the island only for a coconut to hit you on the head. Game over!")
elif choiceTwo == "yes" or choiceTwo == "Yes":
print("You enter a dark cave and cannot see anything.")
choiceThree = input("You can make a Torch (T), or roam aimlessly (R), or exit the cave (E): ")
if choiceThree == "T" or choiceThree == "t":
print("You walk forward and find the treasure! You win!")
elif choiceThree == "R" or choiceThree == "r":
print("You fall into a hole full of spikes. Game Over.")
elif choiceThree == "E" or choiceThree == "e":
print("As you exit a big boulder falls on top of your head. Game Over.")
else:
print("Invalid Response, Try again.")
else:
print("Invalid Response, Try again.")