These are based somewhat on my events i did a while ago (the ones that shouldn't be too contriversial to put into stock game):
Hedge Doctor offers cure:
must have some kind of curable illness
chance increases as health lowers, espeically if it is under 1)
trusting or supscious should affect this
effect will be 50% chance of death or 50% chance of healing (technically both or neither can happen) if you accept, not sure what happens if you decline (should be something as declining a cure at extremely low health should give some kind of reward)...
could be changed to exotic cure event which has a chance of risking herasy if you take it, but a bit of piety if you don't (like 25)
or perhaps you gain trusting if you take it and suspicious if you don't (whether or not is guaranteed i'm not sure)
perhaps all those effects can be used
Exotic Ferility drug
would be for females under 45. not sure if anyone under 16 or unmarried should get this. No one with max fertility should get this. maybe even close to max health.
Would happen roughly every 10-20 years.
Those with extreemly low fertily (under 5) would be very likely to get this while those above 10 would be very unlikely.
suspicious people less likely, trusting more likely. Not sure religion should play any part in chance.
taking it would increase the fertiliy by 1, maybe 2, but it could make her sick. The rest would be similar to effects i mentioned in the previous event.
Revitalizaing potion:
happens for anyone over age of 40. No one with max health should get this. maybe not anyone with high health stat.
only trusting or suspicious should affect the chance, unless religion takes part.
taking it removes lazy, has a chance of adding 1 health and energetic. However there is a chance of death. Rest is the same with above events.
Really there is something that is needed to raise health as there are no traits that raise health, unless you want to make energetic/lazy affect health, and tons of traits that lower health and since your children will all have similar health, albeit somewhat random, to your parents, they can all die quite easily. same with fertility if its low, except you'll never get any offspring. Now combine those two and its not a pretty picture.
on that note, one last event to mirror the "Traumatic experience with member of the opposite sex" event
Code:
character_event = {
id = 1
picture = "event_intrigue"
name = "Your child is extremely flirtatious with the opposite sex"
trigger = {
condition = { type = age value = 13 }
condition = { type = not value = { type = age value = 22 } }
condition = {
type = or
condition = { type = not value = { type = trait value = hunchback } }
condition = { type = not value = { type = trait value = clubfooted } }
condition = { type = not value = { type = trait value = lisp } }
condition = { type = not value = { type = trait value = stutter } } condition = { type = not value = { type = trait value = harelip } }
}
condition = { type = not value = { type = trait value = lustful } }
}
mean_time_to_happen = { months = 240 }
action_a = {
effect = { type = add_trait value = lustful }
}
}