Salem Nightingale
Roleplayer, at times.
Weird, at all times.
Here because I am not there.
It's just RP so theres absolutely no reason for you to be in my IMs about it.
class SystemStatus:
def __init__(self):
self.critical_failure = True
self.indifference_level = 10
self.warning_message = "Maximum Capacity Reached"
self.empathy = 0
self.emotion = 0
def __str__(self):
status = [
"Critical Failure" if self.critical_failure else "Operational",
f"Indifference Level: {self.indifference_level}",
f"!Warning! {self.warning_message}",
f"Empathy: {self.empathy}",
f"Emotion: {self.emotion}"
]
return "\n".join(status)
status = SystemStatus()
print(status)