import random
import time
print(“
Welcome to the Easter Egg Hunt!
”)
print(“Find the correct egg… but beware of the WRONG one ![]()
”)
print()
eggs = [“Egg 1”, “Egg 2”, “Egg 3”, “Egg 4”, “Egg 5”]
# Randomly choose the safe egg
safe_egg = random.choice(eggs)
while True:
print("Choose an egg:")
for egg in eggs:
print("-", egg)
choice = input("Pick one (type Egg 1–5): ")
if choice not in eggs:
print("❌ Invalid choice! Try again.\\n")
continue
print("\\nYou open the egg...")
time.sleep(2)
if choice == safe_egg:
print("🎉 YOU FOUND THE GOLDEN EGG! YOU WIN! 🎉")
break
else:
print("...")
time.sleep(1)
\# Jumpscare
print("🐔💀 THE SCARY CHICKEN GOT YOU!!! 💀🐔")
print(r"""
(\\\_/)
( •\_•)
/ >🍗 BOO!!!
""")
print("\\nGame Over!\\n")
play_again = input("Play again? (yes/no): ").lower()
if play_again == "yes":
safe_egg = random.choice(eggs)
print("\\n--- New Game ---\\n")
else:
print("Thanks for playing!")
break