This is the bad sequel you didn’t want or need but I made it anyways. Laanila Simulator 2 is a super short python text adventure.
input("\nWelcom to Laanila Simulator 2")
name = input("Wats yur nam: ")
stringit = [
"\nYou suddenly wake up during a math lesson",
f'\nSomeone: \"You finally woke up, {name}\"',
'\nYou saw Antti Pekkala looking at you right beside you',
'\nAntti Pekkala: \"You better have a reason or I will slap you like Will Smith\"',
"tired/accident/lesson/school/forgor/wtf: "]
ans = ""
while True:
for line in stringit:
ans = input(line)
if ans == name:
input('\nAntti Pekkala: \"Noooooooooooo!!!\"')
input('\nAntti Pekkala: \"oooo!!!\"')
break
elif ans == "forgor":
input('\nAntti Pekkala: \"That is okay, You can continue your day\"')
elif ans == "wtf":
input('\nAntti Pekkala: \"HAHAA! You will never escape this loop.. unless you are dum enough say your name\"')
elif ans == "accident":
input('\nAntti Pekkala: \"Lol you gonna be ded when the principal finds out\"')
elif ans == "tired":
input('\nAntti Pekkala: \"and red, hahaa got you\"')
elif ans == "lesson":
input('\nAntti Pekkala: \"That is inappropiate, go to principal\'s office after the class\"')
elif ans == "school":
input('\nAntti Pekkala: \"Yeah agreed, but my opinion is verified so L + ratioed + dum\"')
else:
input('\nAntti Pekkala: \"Lol you so dum that you spelts it rong\"')
input("\nThe lesson ends and you start walking out of the class room")
input("\n\nYou start to feel very dizzy...........")
for i in range(1, 6):
print("")
input("."*i)
print("\n"*15)
input("\n\n\nYou managed to break out of the loop")
input("You wake up in a capsule with a technological helmet attached to your head")
input("\nPay 1000€ to continue")
input("\nYou didn\'t pay so the end")
Leave a comment