# Stat Perks
$ perk_system.add_stat_perk(Stat_Perk(description = "Fucking a camilla in front of her husband has made you feel more charismatic.", cha_bonus = 1, bonus_is_temp = False), "camilla Charisma Bonus")
$ perk_system.add_stat_perk(Stat_Perk(description = "Teaching others has raised your skill ceiling to new levels. +1 work skills cap", skill_cap = 1), "Those Who Can, Do")
$ perk_system.add_stat_perk(Stat_Perk(description = "Training for the big race has helped improve your energy level. +20 max energy, +40 energy cap.", energy_bonus = 20, bonus_is_temp = False, energy_cap = 40), "Athlete Energy Bonus")
$ perk_system.add_stat_perk(Stat_Perk(description = "Increase foreplay skill after helping Starbuck with her advertisement photos. +1 Foreplay Skill", foreplay_bonus = 1, bonus_is_temp =False), "Starbuck Foreplay Bonus")
$ perk_system.add_stat_perk(Stat_Perk(description = "Increase vaginal skill after helping Starbuck with her demonstration video. +1 Vaginal Skill", vaginal_bonus = 1, bonus_is_temp =False), "Starbuck Vaginal Bonus")
$ perk_system.add_stat_perk(Stat_Perk(description = "Increase oral skill after helping Starbuck demonstrate edible panties. + 1 Oral Skill", oral_bonus = 1, bonus_is_temp =False), "Starbuck Oral Bonus")
$ perk_system.add_stat_perk(Stat_Perk(description = "Increase anal skill after helping Starbuck demonstrate double penetration with a dildo. +1 Anal Skill", anal_bonus = 1, bonus_is_temp = False), "Starbuck Anal Bonus")
$ perk_system.add_stat_perk(Stat_Perk(description = "Increase sexual skill cap from repeated sexual activity with Starbuck. +1 Sex Skill Cap", sex_cap = 1, bonus_is_temp =False), "Starbuck Sex Bonus")
# Temporary Stat Perks
$ perk_system.add_stat_perk(Stat_Perk(description = "Temporary increase to focus after yoga.", foc_bonus = 2, bonus_is_temp = True, duration = 3), "Yoga Focus")
$ perk_system.add_stat_perk(Stat_Perk(description = "Cock ring that increases pleasure during vaginal sex. Lasts one week. +2 Vaginal skill", vaginal_bonus = 2, bonus_is_temp =True, duration = 7), "Vibrating Cock Ring")
$ perk_system.add_stat_perk(Stat_Perk(description = "Sensitizing and highly effective anal lubricant. Lasts one week. +2 Anal Skill", anal_bonus = 2, bonus_is_temp =True, duration = 7), "Perfect Anal Lube")
$ perk_system.add_stat_perk(Stat_Perk(description = "Lip balm that feels good when you go down on women. Lasts one week. +2 Oral Skill", oral_bonus = 2, bonus_is_temp =True, duration = 7), "Stimulating Lip Balm")
$ perk_system.add_stat_perk(Stat_Perk(description = "Small, finger mounted vibrator. Increases foreplay skill. Lasts one week. +2 Foreplay Skill", foreplay_bonus = 2, bonus_is_temp =True, duration = 7), "Small Finger Vibrator")
$ perk_system.add_stat_perk(Stat_Perk(description = "Temporary increase max energy after sleeping with a lover. +20 Energy Cap", energy_bonus = 20, bonus_is_temp = True, duration = 2, energy_cap = 20), "Overnight Lover")
# Ability Perks
$ perk_system.add_ability_perk(Ability_Perk(description = "You take a few deep breaths and recover a bit of your energy. Use this perk to regain half your max energy, once per day.", toggle = False, usable = True, usable_func = second_wind_func, usable_cd = 1), "Second Wind")
perk_system.add_ability_perk(Ability_Perk(description = "Clarity slowly converts into lust.", toggle = True, togglable = True, usable = False, update_func = lust_drip_perk_update_func), "Lust Drip")
perk_system.add_ability_perk(Ability_Perk(description = "You gain increase clarity based on your intelligence.", toggle = False, usable = False), "Intelligent Clarity")
perk_system.add_ability_perk(Ability_Perk(description = "You gain increase clarity based on your charisma.", toggle = False, usable = False), "Charismatic Clarity")
perk_system.add_ability_perk(Ability_Perk(description = "You gain increase clarity based on your focus.", toggle = False, usable = False), "Focused Clarity")
perk_system.add_ability_perk(Ability_Perk(description = "Everytime you normally gain lust, you gain 5 extra.", toggle = True,togglable = True, usable = False), "Lustful Priorities")
$ perk_system.add_ability_perk(Ability_Perk(description = "When you teach someone else a skill, you also gain a skill point in that area.", toggle = False, usable = False), "Those Who Can't, Teach")
perk_system.add_ability_perk(Ability_Perk(description = "Gain increased clarity when cumming on tits.", toggle = True, usable = False), "Tits Man")
perk_system.add_ability_perk(Ability_Perk(description = "Gain increased clarity when cumming on ass.", toggle = True, usable = False), "Ass Man")
perk_system.add_ability_perk(Ability_Perk(description = "Gain lust quickly when it is low.", toggle = True, togglable = True, usable = False, update_func = lustful_vigor_perk_update_func), "Lustful Vigor")
perk_system.add_ability_perk(Ability_Perk(description = "Gain energy back more rapidly with high lust.", toggle = True, togglable = True, usable = False, update_func = lustful_youth_perk_update_func), "Lustful Youth")
$ perk_system.add_ability_perk(Ability_Perk(description = "You dig deep and summon reserves of energy to meet the needs of others. Recovers 100 energy, usable once per week.", toggle = False, usable = True, usable_func = time_of_need_func, usable_cd = 7), "Time of Need")
# Item Perks
perk_system.add_item_perk(item_perk_male_strapon, "Male Strapon")
perk_system.add_item_perk(item_perk_dildo, "Dildo")