in serum_traits.rpy I make the following changes
## obedience_enhancer_functions ##
def obedience_enhancer_on_apply(the_person, add_to_log):
the_person.change_obedience(10, add_to_log)
def obedience_enhancer_on_remove(the_person, add_to_log):
the_person.change_obedience(-9, add_to_log)
this change will give a permanent obedience increase of 1 for each serum applied
## large_obedience_enhancer_functions ##
def large_obedience_enhancer_on_apply(the_person, add_to_log):
the_person.change_obedience(20, add_to_log)
def large_obedience_enhancer_on_remove(the_person, add_to_log):
the_person.change_obedience(-18, add_to_log)
this change will give a permanent obedience increase of 2 for each serum applied
## aphrodisiac_functions ##
def aphrodisiac_on_apply(the_person, add_to_log):
the_person.change_slut_core(15, add_to_log, fire_event = False)
the_person.change_slut_temp(15, add_to_log)
def aphrodisiac_on_remove(the_person, add_to_log):
the_person.change_slut_core(-13, add_to_log, fire_event = False)
the_person.change_slut_temp(-15, add_to_log)
def aphrodisiac_on_turn(the_person, add_to_log):
the_person.change_obedience(-0, add_to_log)
this change will give a permanent core slut increase of 2 for each serum applied while removing the obedience penalty
def slutty_caffeine_trait_on_remove(the_person, add_to_log):
the_person.change_max_energy(-19, add_to_log)
the_person.change_slut_core(-13)
this change will give a permanent core slut increase of 2 for and 1 max energy for each serum applied
def love_potion_on_remove(the_person, add_to_log):
the_person.change_love(-19, add_to_log)
this change will give a permanent love increase of 1 for each serum applied, do not give if love is above 80, as love maxes out at 100, but the remove amount of -19 still happens
def fertility_enhancement_on_remove(the_person, add_to_log):
the_person.fertility_percent += -39
this change will give a permanent fertility increase of 1 for each serum applied
def fertility_suppression_on_remove(the_person, add_to_log):
the_person.fertility_percent += +18
this change will give a permanent fertility decrease of 2 for each serum applied