updated with points

fruitual
log 1 year ago
parent a295c6605b
commit 9699a3f915

@ -1,7 +1,7 @@
currentRoom = "aquarium"
start = True
graduation = False
study = False
study = 0
while True:
if (start == True):
@ -25,7 +25,8 @@ while True:
elif i in ["learn","study","read", "pain", "frustration", "fun"]:
print("You have studied really hard. Noice")
study = True
study = study + 30
print("your ECTS is " + str(study) + " points")
# Choices in the neutral zone
elif currentRoom == "neutralzone":
@ -57,8 +58,8 @@ while True:
print("Leslie: Hiiiiiii student, how can I help you?")
i = input()
if i in ["graduate","finish","degree"]:
if study == True:
if study >= 119:
print("no problem, here is your final degree. congratulations!")
graduation = True
else:
print("No way you are too stupid go to the aquarium and study")
print("No way you only have " + str(study) + " ECTS points. go to the aquarium and study")
Loading…
Cancel
Save