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
from time import sleep
def storyB():
sleep(1)
print("A distant fire alarm breaks your trance. Do you:")
print("a) Turn on the lights")
print("b) Get back into bed")
x = input("Enter a or b: ")
if x == "a":
print("You turn on the lights.")
elif x == "b":
print("As you climb into bed your overwhelming sense or right and wrong speaks up...")
sleep(1)
print("\"Don't be so lazy.\"")
sleep(1)
print("You climb out of bed and turn on the lights.")
else:
print("That was not an option. Game Over")
return
print("You glance out the window to see absolute mayhem.")
sleep(1)
print("Lady Godiva has returned with a vengance.")
sleep(1)
print("Buildings are burning, people are screaming, and Kebab Rush is still open. Do you:")
print("a) Call the police")
print("b) Call Kebab Rush")
x = input("Enter a or b: ")
if x == "b":
print("A voice announces that calls are only being connected to the Emergency Services.")
sleep(1)
print("You realise that your survival doesn't depend on kebabs.")
sleep(1)
print("You decide to take the Return of Lady Godiva more seriously, and make a deal with yourself to treat this serious, immersive text adventure with the respect it deserves. Fool.")
sleep(1)
print("You call the police.")
else:
print("That was not an option. Game Over")
return