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