Vincent Roy M.
Destroyed by Tito
Those reflections agonizing my eyes.
Those reflections agonizing my eyes.
Currently Offline
Screenshot Showcase
Move On Simulator
import time
import random

class Crush:
def __init__(self, name):
self.name = name
self.interest_level = random.randint(0, 100) # 0-100 scale
self.compatibility = random.randint(30, 90) # Some base compatibility

def respond(self, approach):
# Calculate response based on approach and compatibility
response_score = (self.compatibility + approach.quality) // 2

if response_score > 80:
return f"{self.name} : Wow, I'd love that! 😊"
elif response_score > 60:
return f"{self.name} : That sounds nice! 🙂"
elif response_score > 40:
return f"{self.name} : Maybe another time? 😐"
else:
return f"{self.name} : I don't think so. 😕"

class Approach:
def __init__(self, quality, description):
self.quality = quality # 0-100 scale
self.description = description

@classmethod
def generate_approaches(cls):
return [
Approach(85, "Ask them out for coffee"),
Approach(70, "Compliment their personality"),
Approach(60, "Send a funny meme"),
Approach(50, "Like their recent social media post"),
Approach(40, "Make awkward small talk"),
Approach(30, "Stare from across the room"),
Approach(20, "Ask a friend to tell them you like them")
]

def moving_on_simulation():
print("\n🌟 Moving On to Your Crush Simulator 🌟\n")
time.sleep(1)

# Get user input
your_name = input("Enter your name: ")
crush_name = input("Enter your crush's name: ")

# Create instances
you = Crush(your_name)
crush = Crush(crush_name)

print(f"\n{your_name}'s compatibility with {crush_name}: {crush.compatibility}%")
print(f"{crush_name}'s initial interest level: {crush.interest_level}%\n")

approaches = Approach.generate_approaches()

for attempt, approach in enumerate(approaches, 1):
print(f"\nAttempt #{attempt}: {approach.description}")
time.sleep(1)

# Get response
response = crush.respond(approach)
print(response)

# Update interest level based on response quality
crush.interest_level += (approach.quality - 50) // 10
crush.interest_level = max(0, min(100, crush.interest_level))

print(f"{crush_name}'s interest level is now: {crush.interest_level}%")
time.sleep(1)

# Check if we should stop trying
if crush.interest_level >= 80:
print("\n🎉 Success! You've made a great connection!")
print(f"{crush_name} is definitely interested in you!")
break
elif crush.interest_level <= 20:
print("\n💔 Maybe it's time to move on...")
print("There are plenty of other amazing people out there!")
break

if 20 < crush.interest_level < 80:
print("\n🤷 The outcome is uncertain, but you put yourself out there!")
print("Whether it works out or not, you showed courage!")

print("\n💡 Remember: Real relationships are about mutual respect and connection.")
print("Whether with this person or someone else, the right connection will feel right.")

if __name__ == "__main__":
moving_on_simulation()
Review Showcase
0.4 Hours played
my mom doesn't want me to drive a motorcycle so i buy this game instead
Recent Activity
241 hrs on record
last played on 19 Apr
128 hrs on record
last played on 13 Apr
279 hrs on record
last played on 28 Mar
500 XP