diff --git a/StorylineA.py b/StorylineA.py index 36015d1..077cefc 100644 --- a/StorylineA.py +++ b/StorylineA.py @@ -1,3 +1,18 @@ ### Storyline A def StoryA(): - print("The footsteps suddenly stop...") \ No newline at end of file + 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()