diff --git a/game.py b/game.py index 891e7ff..0e402dc 100644 --- a/game.py +++ b/game.py @@ -52,4 +52,22 @@ player_items.append("Potion") print("Your items now: ") print(player_items) -# ---section end--- # \ No newline at end of file +# ---section end--- # + +# Section autor: Aida # +print("The Maryland police stop you and try to collect taxes from you! What do you do!") +print("1. Run from police") +print("2. Tell him you dont have a money") +decision = "" +while(decision == ""): + decision = input("Pick a number") + if (decision == 1): + print("You will be shot! Game over!") + exit() + elif (decision == 2): + print("Police will give you a warning!") + print("Go home!") + else: + print("Please enter 1 or 2") + +# End section # \ No newline at end of file