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
19 changes: 18 additions & 1 deletion game.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,21 @@
player_items.append("Potion")
print("Your items now: ")
print(player_items)
# ---section end--- #
# ---section end--- #



#Section author: Aziza
print("What do we need to do to finish ziyotek successfully?")
print("1. Sleep less,Don't Freak Out, practice more!!")
print("2. Nothing)) ")
decision = input("Pick a number")
if (decision == "1"):
print("You get good job and great future!!")
exit()
elif (decision == "2"):
player_money = player_money * 0.1
print("You gonna miss Ziyotek and owes:")
print(str(player_money) + " " + "dollar")

# End section #