Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("welcome to:")
- print(" ____ ")
- print(" -- |---- \ / |===== |\ |======== | | | | |======= |\ /| -- ====== |======= ")
- print(" / \ | - \ / | | \ | = | | | | | | \ / | / \ / | ")
- print(" /====\ | - \ / |===== | \ | = | | |===== |======= | \ / | /====\ / |======= ")
- print(" / \ | - \ / | | \ | = | | | \ | | \ / | / \ / | ")
- print("/ \ |--- \/ |===== | \| = \____/ | \|======= | \/ | / \ /===== |======= ")
- print("you entere a maze. And you see two paths.")
- print("do you want to turn left or right?")
- #promp user for choice
- beginnerChoice = input("> ")
- if(beginnerChoice == "left"):
- print("you decide to to turn left.")
- print("There you see two orcs")
- print("Are going to ask them for direction?")
- orcChoice = input("> ")
- if(orcChoice == "yes"):
- print("You decide to ask the orcs for directions.")
- print("The orcs replies that they wil navigate you if you can answer their riddle.")
- print("The riddle is:")
- print(" I am an odd number. Take away a letter and I become even. What number am I?")
- orcRiddle = input("> ")
- if(orcRiddle == "seven"):
- print("They say that you are right! So they let you continue.")
- print("When you find the exit and go trough... you wake up and realise that this is just a dream!")
- else:
- print("The orcs grabs you and eats you for lunch.")
- print("You died")
- elif(orcChoice == "no"):
- print("you decide to go away")
- print("Suddenly the orcs turn around and grabs you nowhere to be seen!")
- print(" You got kidnaped")
- else:
- print("Type yes or no")
- elif(beginnerChoice == "right"):
- print("You decided to turn right.")
- print("When you turn right you see a chest.")
- print("Are you willing to open it?")
- chestChoice = input("> ")
- if(chestChoice == "yes"):
- print("You decide to open the chest.")
- print("When you open the chest you find teeths and a big tongue wagging around you")
- print("You got eaten by chest.")
- elif(chestChoice == "no"):
- print("You think that this is a trap and decide to turn back.")
- print("While you walk back from where you began you you run into a dog,but suddenly the dog run into a dark shadow.")
- print("Will you follow the dog?")
- dogChoice = input("> ")
- if(dogChoice == "yes"):
- print("You decide to follow the dog.")
- print("When you run into the shadow you wake up. It was all a dream!")
- elif(dogChoice == "no"):
- print("You decide not to follow the dog and instead to start again from the beginig.")
- else:
- print("Choose between yes or no.")
- else:
- print("Type yes or no")
- else:
- print("chose between left or right")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement