Skip to content

Commit

Permalink
Update StorylineA.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kenyonJ committed Oct 23, 2018
1 parent a5e6341 commit 5099c9c
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion StorylineA.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
### Storyline A
def StoryA():
print("The footsteps suddenly stop...")
print("The footsteps suddenly stop...")
print("Do you either:")
print("a) scream again")
print("b) keep quiet")
x = input("Enter a or b: ")
x = x.lower()
if x == "a":
print("The door swings open, the dark figure carrying a gun...")
print("It seems your story has ended here...")
print("Game over")
elif x == "b":
print("You hear the footsteps growing quieter.")
print("'Maybe they didnt hear me' you think to yourself; maybe this was for the best")
else:
print("It seems you entered an invalid command, try again")
StoryA()

0 comments on commit 5099c9c

Please sign in to comment.