Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #The Adventure Game!
- print "PLEASE NOTE THAT IF THE PROGRAM RETURNS '>>>' YOU HAVE LOST, YOU NEED TO RELOAD"
- print "Welcome"
- x=raw_input ("What is your name?: ")
- print "Hello, "+x+" it is a pleasure to meet you. "
- print "Please choose from Mage, Barbarian or Monster "
- y=raw_input("Choose!: ")
- # Barbarian
- if y== "Barbarian":
- print"A fine choice, as a Barbarian you will have mastery of Axe or . "
- print"The Axe is a one handed weapon allowing for the use of a sheild. The Mace is a two handed weapon but deals more damage to off-set extra damage taken. "
- w=raw_input("Choose!: ")
- #Mage
- if y== "Mage":
- print "A fine choice, as a Mage you will have mastery of Wand or Staff"
- print "The Wand is a one handed weapon allowing for the use of a sheild. The Staff is a two handed weapon but deals more damage to off-set extra damage taken. "
- w=raw_input("Choose!: ")
- #Monster
- if y == "Monster":
- print "We do ot like Monsters. Try again!"
- print "Please choose from Mage, Barbarian or Monster "
- y=raw_input("Choose!: ")
- print "Congratulations "+x+", you have chossen to be the "+w+" Master "+y+". Your Quest begins"
- # Level 1
- print "Level 1.0"
- print "You awake lying on the ground, as head becomes clearer, you tentively start to feel around you, not able to open your eyes. The grass on the ground is damp with dew, you are damp as well. "
- print ""+x+" 'Where am I?'"
- print "You streach out and open your eyesm You are in a clearing surrounded by dense trees and foliage"
- print " The sun, just clear of the trees is bright, you can already feel its heat."
- a = raw_input("What part of the day is it? AM or PM")
- if a== "AM":
- print "Well done, now you need to find more about where you are?"
- else:
- print "I dont think so."
- a = raw_input("What part of the day is it? AM or PM")
- if a== "AM":
- print "Good, now Where are you?"
- else:
- print "Still not correct. Think about the dew on the ground!"
- a = raw_input("What part of the day is it? AM or PM")
- print "Well done, now you need to find more about where you are?"
- #Level 1.2
- print "You face in the direction of the Sun"
- print "You can hear a stream to your left. To your right behind the trees there are the snow capped peaks of a mountian range"
- print "In order to continue you need to get to higher ground, but which direction are the mountains?"
- c = raw_input ("North, East, South or West")
- if c == ("South"):
- print "Well done, You head towards to the trees "
- else:
- print "Try again. Think about the infomation above regarding your surroundings, time and direction"
- c = raw_input ("North, East, South or West")
- if c == ("South"):
- print "Well done, You head towards to the trees "
- else:
- print "It is Morning. The sun rises in the EAST. You are facing the sun. The Mountians are to your right."
- c = raw_input ("North, East, South or West")
- if c == ("South"):
- print "Well done, You head towards to the trees "
- #Level 1.3
- print "After walking through the trees for a while, the ground starts to incline and you start walking up the foot hills of the mountains."
- print "Soon you come to another clearing"
- print "WAIT"
- print "There is something in the clearing..."
- print "You stop and pear through the foiage for a better look"
- print " A gasp of breath escapes as you relaise that you are looking at a Minotaur..."
- print "THANK YOU GETTING THIS FAR, MORE TO FOLLOW WITH EACH LESSON"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement