room=["a knife","a piece of bread","a bottle of water"]
bag=["a prayer book"]
defhere():
room_string=", ".join(room)
message=f"you are already there. Next to you is: {room_string}"
returnmessage
#function ending
defdefreply():
messages=[
"woopsie, that means nothing.",
"no, try again with a different command.",
"are you serious?"
]
message=choice(messages)
returnmessage
defwinreply():
print("despite the pain, you look up to the sky and think, I am free.")
defget():
bag.append("a knife")
room.remove("a knife")
message="you took a knife"
returnmessage
defdisplayMsg():
print("good morning, cult member! you slept in again. quick, you must make your bed and join the others in worship or the Leader may punish you.")
time.sleep(3)
print("good, you have made your bed. you look around the communal bedroom, where two rows of neatly made single beds remind you that everybody else rose a long time ago. there are four doors, facing each cardinal direction. which direction do you wish to go?")