Advertisement
Bryn417

water.py

Jun 12th, 2021
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. print("You find yourself in a room with no windows or visible light sources, though it is stark white. There is a wooden table with a glass of water on it.")
  2. drink = input("Drink the water? Y/N" )
  3. if drink == "Y":
  4. print("The water was poisoned, and you fall over dead instantly. The end.")
  5. elif drink == "N":
  6. print("Unable to escape the room no matter what you do and refusing to drink the water, you die of thirst. The end.")
  7. else:
  8. print("I didn't understand that. Please start over.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement