Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion game.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,22 @@
player_items.append("Potion")
print("Your items now: ")
print(player_items)
# ---section end--- #
# ---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 #