init python: import inspect def replace_text(text): frame = inspect.currentframe() who = frame.f_back.f_locals.get('who') text = text.replace("Well, not your birth mother... {p}your stepmom.","") text = text.replace("[stepmom] has an equally attractive, yet utterly bitchy, teen daughter.","You also live with your equally attractive, yet utterly bitchy, little sister.") text = text.replace("Your father married [stepmom] 6 years ago.","Your parents married 23 years ago.") text = text.replace("You have both been living with them ever since they got married.","You've lived a cushy suburban life since they moved here shortly after.") text = text.replace("Now it's just you, [stepsis] and [stepmom]. A family of circumstance. Living under the one roof.","Now it's just you, [stepsis] and [stepmom]. Doing your best to move forward after your father disappeared.") text = text.replace("You've had a secret crush on her since your Dad married her.","You've had inappropriate feelings toward your mother for years.") text = text.replace("He's not my brother...","Why would I be kind to such a dweeb? I don't care if he's my brother.") text = text.replace("Not by blood. But still, he's family and it's time that you treat him with respect.","I raised you better than that, young lady!") text = text.replace("Why are you even here? Why is he still living with us, Mom?","You're so pathetic, I can't believe we spawned from the same parents.") text = text.replace("Because he's family. He's our family.","[stepsis], this is your last warning!") text = text.replace("Hardly. You're nothing like your Dad. At least he had money.","It's like nothing from Dad even rubbed off on you.") text = text.replace("Don't listen to [stepsis]. You {i}are{/i} a part of this family.","Don't listen to [stepsis]. You are {i}not{/i} a dweeb.") text = text.replace("I still have a duty to make sure that you get set up in life and have a steady future.","You're every bit the man your father was.") text = text.replace("Your father would have done the same for [stepsis] if I were gone.","You just need time to realize your potential.") text = text.replace("(She's doesn't want to have to keep explaining to her boyfriends why I'm living with her.)","(She's doesn't want to have to keep explaining to her boyfriends why her brother is so pathetic.)") text = text.replace("(That bitch took my father's inheritence from me.)","(She's just as disappointed in me as my sister.)") text = text.replace("(She only wants to stay on your good side to quell you. So you don't sue her and get your father's money back.)","(She only puts on an act so she doesn't feel like a failure of a mother.)") text = text.replace("We're not even related. Yet Mom insists you're part of our family.","You're such a dweeb. I can't believe we share the same gene pool.") text = text.replace("You mean besides the fact that he was an actual brother-ly figure to me?{w} Because that's what he was. It doesn't matter whether we were related or not.{w} I still saw him as a brother.","You mean besides the fact that he's my brother?") text = text.replace("Fine. It would be weird fucking somebody so close to you.{w} But what if he wasn't your step-brother?","Fine, it would be weird fucking family. But what if he wasn't your brother?") text = text.replace("Step-mom","Mom") text = text.replace("Step-mother","Mother") text = text.replace("step-mom","mom") text = text.replace("step-mother","mother") text = text.replace("Step-sis","Sis") text = text.replace("Step-sister","Sister") text = text.replace("step-sis","sis") text = text.replace("step-sister","sister") text = text.replace("Step-bro","Bro") text = text.replace("Step-brother","Brother") text = text.replace("step-bro","bro") text = text.replace("step-sister","brother") text = text.replace("Step-siblings","Siblings") text = text.replace("Step-sibling","Sibling") text = text.replace("step-siblings","siblings") text = text.replace("step-sibling","sibling") text = text.replace("Step-family","Family") text = text.replace("Step-families","Families") text = text.replace("step-family","family") text = text.replace("step-families","families") text = text.replace("Step-son","Son") text = text.replace("step-son","son") if text.strip() == "This is Grandma Sara, Julia's and Emma's mother. My, Lucy and Olivia's grandmother.": return text if who is stepsis or who is a: text = text.replace("your Dad", "our Dad") text = text.replace("his Dad", "our Dad") text = text.replace("my Dad", "our Dad") text = text.replace("my Father", "our Father") text = text.replace("[stepmom]","Mom") return text config.say_menu_text_filter = replace_text