Incest Patch
Tested only in Babysitter-0.2.2b version might work in other versions too..
Open the file rel_rest.rpy (using notepad++ application) which can be find in \Babysitter-0.2.2b.-win\game folder
Replace the content of the file by following code
____________________________
Copy content starting with # till last line "config.say_menu_text_filter = rel_rest"
# code inspired by bossapplesauce @ f95zone
init python:
hardcoded = {}
def rel_rest(text):
def text_repl(t):
if renpy.re.match("niece", t.group(0)): return "daughter"
elif renpy.re.match("uncle", t.group(0)): return "daddy"
elif renpy.re.match("Niece", t.group(0)): return "daughter"
elif renpy.re.match("Uncle", t.group(0)): return "daddy"
elif renpy.re.match("goddaughter", t.group(0)): return "daughter"
elif renpy.re.match("godfather", t.group(0)): return "daddy"
elif renpy.re.match("Goddaughter", t.group(0)): return "daughter"
elif renpy.re.match("Godfather", t.group(0)): return "daddy"
elif renpy.re.match("Goddaugther", t.group(0)): return "daughter"
elif renpy.re.match("goddaugther", t.group(0)): return "daughter"
return hardcoded[text] if text in hardcoded else renpy.re.sub( r'(?: (?i)(?:uncle|niece|goddaughter|godfather|goddaugther))', text_repl, text )
config.say_menu_text_filter = rel_rest
___________________________________________
Note :- remove space in second last line: renpy.re.sub( r'(?: (?i) its showing sad face emoji if i remove space between : ( like this