Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#Amaan's part2 should be before
#import TIH_par1_Greg (remove the # and the text+brackets once Greg has finished)
#pause-function (remove once Greg's is implemented)
def pause():
input("\n<press enter to continue>\n\n")
pause()
#Text by Alarick(Ryan)
print("“It needs to be human-like; It needs limbs, a body, a heart and a face.” Communicating with a humanoid structure would be much more comfortable.")
pause()
print("Initially, the human was excited...")
pause()
print("Could it be, She'd finally be given her purpose in life?")
pause()
print("Curiosity washed over her: what could the purpose be, how would the robot explain her purpose?")
pause()
print("""The human has choices to make on what materials to use, and how she'll obtain them.
Which place will she choose to scavenge?""")
print("""Choose a number:
1.Kitchen
2.Your bedroom
3.Loft
4.Scrapyard
5.Livingroom
6.Shed
Or to end the mini game press any other key besides 1 - 6.""")
#Alarick's (Ryan) code edited and loop added by Javeria
firstchoice=input("")
while (firstchoice):
if firstchoice == "1":
print("She decides the kitchen might be the best place to start looking for parts")
pause()
print("""After rummaging around for parts she can use, she's found 2 options for the body of the robot.
1. Old Henry vacuum... no-one will miss it, will they?
2. Steam mop... Will need some dusting""")
secondchoice = input("")
if secondchoice == "1":
print("Henry is getting an upgrade!!!")
elif secondchoice == "2" :
print("Pretty sure we've had this steam-mop for years and we're yet to use it, so I'll take this.")
else:
print('"Hmm...I`ll just pick something else from the scrap yard!"')
pause()
print("""Choose a number:
2.Your bedroom
3.Loft
4.Scrapyard
5.Livingroom
6.Shed
Or to end the mini game press any other key besides 1 - 6.""")
firstchoice = input("")
elif firstchoice == "2":
print("She's chosen her bedroom, atleast nobody can complain what she uses")
pause()
print("she knows where things are already and quickly thinks of the speaker and binoculars under her bed, great for a face.")
pause()
print("""Choose a number:
1.Kitchen
3.Loft
4.Scrapyard
5.Livingroom
6.Shed
Or to end the mini game press any other key besides 1 - 6.""")
firstchoice = input("")
elif firstchoice == "3":
print("She's going in the dusty loft")
pause()
print("*COUGH*")
pause()
print("""I always hated this place""")
pause()
print("5 minutes later she finds an old computer... Nothing is missing!!!")
print("That will do for the brain and heart.")
pause()
print("""Choose a number:
1.Kitchen
2.Your bedroom
4.Scrapyard
5.Livingroom
6.Shed
Or to end the mini game press any other key besides 1 - 6.""")
firstchoice = input("")
elif firstchoice == "4":
print("Thinking for a while, she remembers theres an abandoned scrapyard nearby")
pause()
print("It's a spooky place at night but she can easily gather more than enough scrap metal!")
pause()
print("""This place creeps me out!""")
pause()
print('"I Should be able to find enough scrap to make the limbs here"')
pause()
print("...")
pause()
print("After 10 minutes, she finds enough scrap,")
print("""time to get out of here!""")
pause()
print("She returs home.")
pause()
print("""Choose a number:
1.Kitchen
2.Your bedroom
3.Loft
5.Livingroom
6.Shed
Or to end the mini game press any other key besides 1 - 6.""")
firstchoice = input("")
elif firstchoice == "5":
print("Looking around the room she's already in, she remembers a box in a cupboard under the tv full of wires she could repurpose for the circuitry")
pause()
print("""Choose a number:
1.Kitchen
2.Your bedroom
3.Loft
4.Scrapyard
6.Shed
Or to end the mini game press any other key besides 1 - 6.""")
firstchoice = input("")
elif firstchoice == "6":
print("She heads to the garage and looks around. She finds a welding machine.")
pause()
print('"This will be handy," she mutters.')
pause()
print("She rummages around in a few boxes and finds spray paint.")
pause()
print('"Great! I can use this to oaint my robot." She smiles at her good fortune.')
pause()
print("""Choose a number:
1.Kitchen
2.Your bedroom
3.Loft
4.Scrapyard
5.Livingroom
Or to end the mini game press any other key besides 1 - 6.""")
firstchoice = input("")
else:
print("End of Mini Game!!!")
break
#Build the robot/ machine by Javeria
print("\n The Human was excited, she would finally be given a purpose. It was this thought that drove the Human to start building the robot; curiosity over what purpose the robot would bestow upon her. She had everything she needed to build the robot, she was ready.")
pause()
print('\n "What shall I do first?" The Human thinks aloud.')
pause()
print("""Choose a number:
1.Build the head
2.Build the Body
3.Build the limbs
4.Put together the circuitry
5.Spray paint all the parts
6.Program the robot.""")
buildChoice = input("")
while (buildChoice):
if buildChoice == "1":
print("She starts making the head, she uses the binoculars, the speakers and the brain parts and after a lot of effort, has something that resembles the head of Wall-E.")
pause()
print("""Choose a number:
2.Build the Body
3.Build the limbs
4.Put together the circuitry
5.Spray paint all the parts
6.Program the robot.""")
buildChoice = input("")
elif buildChoice == "2":
print("She starts building the body, puttibg together the different parts she had gathered for it. ")
print('"That looks good," she says admiring her work.')
pause()
print("""Choose a number:
1.Build the head
3.Build the limbs
4.Put together the circuitry
5.Spray paint all the parts
6.Program the robot.""")
buildChoice = input("")
elif buildChoice == "3":
print("She starts welding the scrap metal the she collected from the yard and makes limbs for the robot.")
pause()
print("""Choose a number:
1.Build the head
2.Build the Body
4.Put together the circuitry
5.Spray paint all the parts
6.Program the robot.""")
buildChoice = input("")
elif buildChoice == "4":
print("She uses the wires to build a circuitry system for the robot.")
pause()
print("""Choose a number:
1.Build the head
2.Build the Body
3.Build the limbs
5.Spray paint all the parts
6.Program the robot.""")
buildChoice = input("")
elif buildChoice == "5":
print("She spray paints all the different parts.")
pause()
print("""Choose a number:
1.Build the head
2.Build the Body
3.Build the limbs
4.Put together the circuitry
6.Program the robot.""")
buildChoice = input("")
elif buildChoice == "6":
print("She programs the robot to think for itself.")
pause()
print("""Choose a number:
1.Build the head
2.Build the Body
3.Build the limbs
4.Put together the circuitry
5.Spray paint all the parts.""")
buildChoice = input("")
else:
print("She puts all the parts together as quickly as she can and finally stands back to admire her work.")
break