-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfragle_heist_simulator.py
More file actions
62 lines (51 loc) · 1.5 KB
/
fragle_heist_simulator.py
File metadata and controls
62 lines (51 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python3
import random
import time
crew = [
"Captain Rattleshade",
"Gumball the Whisperer",
"Bobby Blip",
"Miss Static",
"YELLER",
"Dennis (not here right now)"
]
locations = [
"Quantum Vault #42",
"The Cookie Mainframe",
"That Suspicious Ice Cream Truck",
"Bank of Emotionally Unavailable Accounts",
"Fridge behind the firewall"
]
obstacles = [
"a dancing CAPTCHA",
"someone changed all the passwords to 🐸 emojis",
"YELLER got into a shouting match with a lamppost",
"Miss Static forgot her own plan",
"Dennis left mid-heist to buy oat milk"
]
outcomes = [
"They stole the cookies 🍪",
"They accidentally opened a wormhole 🌀",
"Everyone’s stuck in an infinite while-loop",
"They escaped riding spinning chairs",
"They got hired as bank security consultants"
]
def run_heist():
print("🧠 Initializing Fragle Heist Simulation...\n")
time.sleep(1)
print(f"🎩 Assembling the crew...")
for member in crew:
time.sleep(0.5)
print(f" - {member}... Ready-ish.")
print("\n🚪 Target Location:")
target = random.choice(locations)
print(f" > {target}")
print("\n⚠️ Obstacle Encountered:")
obstacle = random.choice(obstacles)
print(f" > {obstacle}")
print("\n🎲 Heist Outcome:")
outcome = random.choice(outcomes)
print(f" > {outcome}")
print("\n✨ Simulation Complete. Press 🍪 to reboot.")
if __name__ == "__main__":
run_heist()