Skip to content
Permalink
Browse files
Update bank_robbery.py
updated
  • Loading branch information
rajaa20 committed Oct 9, 2020
1 parent f34c042 commit aa210555d9e8148458ad20d628c3f64dc0c902ec
Showing 1 changed file with 38 additions and 17 deletions.
@@ -2,21 +2,27 @@ from story import * # parts of the story stored in variables


def starter():
print("\tAs the biggest heist of his life appeared over the horizon,\n"
print("\n"
"\tAs the biggest heist of his life appeared over the horizon,\n"
"Mark was yet to gather his crew of computer geniuses. As they\n"
"were planning to rob a bank, he would need someone to remotely\n"
"disable the camera, someone to also remotely disable the alarm\n"
"and someone to open the safety vaults.\n"
"\n"
"\tMark was not willing to settle for anything less than the best,\n"
"so he decided to contact an old friend with several contacts in\n"
"this area. He was given 3 names, Chris, Ray and LP. These were the\n"
"best IT geniuses around; however, they would take a hefty 10% of the\n"
"cut each\n"
"best IT geniuses around; however, they"
"would take a hefty 10% of the\n"
"cut each.\n"

"\n"
"<Chris>\n"
"\n"
"<Ray> \n"
"\n"
"<LP> \n"
"\n"
"<c> to Continue ")


@@ -39,7 +45,9 @@ def starter():
"and in the end, they decided on:\n"
"\n"
"<a>an old Ford Transit van\n"
"\n"
"<b>an old army style Range-Rover\n"
"\n"
"<c> to Continue")

while True:
@@ -54,8 +62,11 @@ def starter():
print("I don't understand, Please enter again:")

print(paragraph7)
print('<a> small banks\n'
print('\n'
'<a> small banks\n'
"\n"
'<b> bigger plan\n'
"\n"
'<c> to Continue')

while True:
@@ -70,14 +81,19 @@ def starter():
print("I don't understand, Please enter again:")

print(paragraph10)
print("<plan> for details of the plan\n"
print("\n"
"<plan> for further detailsc"
"\n"
"\n"
"<c> to continue")

while True:
enter = input("").lower()
if enter == "plan":
print(paragraph12)
print("<a> for details of the special place\n"
print("\n"
"<a> for details of the special place\n"
"\n"
"<c> to continue")
while True:
enter = input("").lower()
@@ -109,6 +125,7 @@ def starter():

print(paragraph15)
print("<a> To start attack\n"
"\n"
"<b> what is spear-phishing")

while True:
@@ -149,26 +166,30 @@ def starter():

print(paragraph19)
print(paragraph20)
print("<1> for details about Mark\n"
"<2> for Chris\n"
"<3> for Ray\n"
"<4> for Ray's friend\n"
"<5> for LP\n"
print("\n"
"Find out what happened to:"
"\n"
"Mark\n"
"Chris\n"
"Ray\n"
"Ray's friend\n"
"LP\n"
"\n"
"<c> to Continue")

while True:
enter = input("").lower()
if enter == "c":
break
elif enter == "1":
elif enter == "mark":
mark()
elif enter == "2":
elif enter == "chris":
chris(2)
elif enter == "3":
elif enter == "ray":
ray(2)
elif enter == "4":
elif enter == "ray's friend":
ray_friend()
elif enter == "5":
elif enter == "lp":
lp(2)
else:
print("I don't understand, Please enter again:")
@@ -270,7 +291,7 @@ def range_rover():
"and bullet proof body panels. The team had been assembled and the \n"
"base of operations was modified with state of the art computers. \n"
"So far, everything was moving smoothly. No hiccups yet ! \n"
"<Continue>"
"<c> to continue"
"\n"
"\n")

0 comments on commit aa21055

Please sign in to comment.