rpy python annotations
init -1 python:
def spanish_fly_function_on_apply(person, the_serum, add_to_log):
the_person.arousal += 10
return
def spanish_fly_function_on_turn(person, the_serum, add_to_log):
the_person.arousal += 10
return
def add_frisky_serum():
spanish_fly_trait = SerumTraitMod(name = "Spanish Fly",
desc = "Uses Exotic herbs and stimulants to induce high arousal in females.",
positive_slug = "+10 Arousal/Turn, +$20 Value",
negative_slug = "+80 Serum Research",
research_added = 80,
duration_added = 10,
base_side_effect_chance = 0,
on_apply = spanish_fly_function_on_apply,
on_turn = spanish_fly_function_on_turn,
tier = 2,
start_researched = False,
research_needed = 800,
clarity_cost = 750,
mental_aspect = 0, physical_aspect = 3, sexual_aspect = 2, medical_aspect = 0, flaws_aspect = -1, attention = 0,
start_enabled = False
)
label serum_mod_frisky_serum_trait(stack):
python:
add_frisky_serum()
execute_hijack_call(stack)
return