SWIMMING POOL ROMANCE
```python
src/game/simulation.py
class Lucas:
def __init__(self, name):
self.name = name
self.mojo = 100 # Lucas’s charm level
def attract(self, girl):
if self.mojo > 50:
print(f"{self.name} approaches {girl.name} with confidence!")
girl.react(self.mojo)
else:
print(f"{self.name} needs to boost his mojo before approaching {girl.name}.")
class Girl:
def __init__(self, name):
self.name = name
self.interest_level = 0
def react(self, mojo):
self.interest_level += mojo
if self.interest_level > 150:
print(f"{self.name} is impressed and wants to spend time with Lucas!")
else:
print(f"{self.name} is intrigued but not fully convinced yet.")
Simulation
lucas = Lucas("Lucas")
natasha = Girl("Natasha")
lucas.attract(natasha)