# Challenge 1: Arrow Detector Trap
def detect_arrows():
arrows = int(input("How many arrows are flying in? "))
for _ in range(arrows):
speed = int(input("Enter arrow speed level: "))
if speed < 10:
print("Wooden arrow – no big deal.")
elif speed <= 50:
print("Blocked it with my shield!")
else:
print("YIKES! That one’s enchanted – take cover!")
# Challenge 2: Secret Minecode Entry
def enter_mine():
for _ in range(3):
guess = input("Enter password: ")
if guess == "bedrock123":
print("Nice! Door opened!")
return
else:
print("Nope – redstone says no.")
print("Alarm triggered! Silverfish incoming!")
# Challenge 3: Sprint Speed Tester
def test_sprint_speed():
sprint_level = int(input("Enter your sprint level (1–10): "))
for i in range(1, sprint_level + 1):
if i <= 3:
print("Way too slow – you're toast.")
elif i <= 7:
print("Perfect – dodging mobs like a pro!")
else:
print("Speedy! But your hunger bar is dying…")
# Challenge 4: XP Level Ranker
def grade_players():
players = int(input("How many players to rank? "))
for _ in range(players):
xp = int(input("Enter player XP level: "))
if xp < 30:
print("Newbie – give ‘em a wooden sword.")
elif xp < 70:
print("Solid fighter – they’re iron material.")
else:
print("Elite player – diamond champ status!")
# Challenge 5: Redstone Vault Lock
def unlock_redstone_door():
while True:
code = int(input("Enter the 4-digit code: "))
if code == 1234:
print("YES! The vault opens – grab the diamonds!")
break
elif code > 1234:
print("Boom! Redstone exploded!")
else:
print("Signal too weak – try again.")
# Challenge 6: Elytra Launch Training
def simulate_elytra_jumps():
jumps = int(input("How many jumps to simulate? "))
for _ in range(jumps):
height = float(input("Enter jump height: "))
if height < 1:
print("Nope – you faceplanted.")
elif height == 2:
print("Too high! You hit the top of a shulker tower!")
else:
print("Clean glide – 10/10 landing.")
# Challenge 7: Mob Power Scanner
def scan_mobs():
mobs = int(input("How many mobs to scan? "))
for _ in range(mobs):
power = int(input("Enter mob power level: "))
if power < 30:
print("Weak mob – easy XP.")
elif power < 70:
print("Tough mob – stay alert.")
else:
print("Boss mob detected – this one might explode!")
# Challenge 8: Inventory Weight Manager
def manage_inventory():
weight = int(input("Enter total inventory weight: "))
while weight > 0:
if weight >= 1000:
print("You’re crawling – can’t sprint!")
elif weight >= 500:
print("You’re walking slow.")
else:
print("You’re light – zoom zoom!")
weight -= 100
# Challenge 9: Portal Gas Detector
def check_portal_zones():
zones = int(input("How many portal zones to check? "))
for _ in range(zones):
gas = int(input("Enter gas level: "))
if gas < 20:
print("Toxic zone – lava hazard!")
elif gas < 70:
print("Breathable – but wear a potion!")
else:
print("RUN! That portal’s about to collapse!")
# Challenge 10: Minecart Coaster Tester
def test_minecarts():
carts = int(input("How many minecarts to test? "))
for _ in range(carts):
speed = int(input("Enter minecart speed: "))
if speed < 20:
print("Slow ride – guests falling asleep.")
elif speed < 40:
print("Nice! Fun and safe.")
else:
print("Too fast! The cart jumped the track!")