Quote Originally Posted by zebez View Post
I'm trying to make a trait that makes you immune to incapable. Is there a better way than going trough all events that gives incapable and add a check for my trait? - No.
I found a way to get around this though. I've created an event where my 'goddess' heals the character in question of all diseases and congenital traits. It seems to work pretty good. An example of the trigger and act would be:
Code:
character_event = {
id = blahblah
desc = "My priests and priestesses have prayed for me"
picture = "blahblah"
only_women
min_age = 16
max_age = 50
trigger = {
#### Here is where you put who gets healed. In my case, it is only the player character but you can do a lot of thing here####
ai = no
trait = incapable ###I have a lot of different traits here but, in your case, this one alone suffices.
}
mean_time_to_happen = {
days = 1 ### Keep it at days = 1 so that it checks every day. Doesn't mean it will happen every day but it will give a chance to happen every day so your character doesn't die or, in your case, stays incapable just waiting for the event to trigger ####
}
option = {
name = "Aphrodite has answered!"
remove_trait = incapable ##Bye bye trait ###
}
}
Last edited: