I'm trying to understand one particular event trigger, but I'm not sure how to interpret it (especially the few lines after "or"-part). Have read some scripting threads, but not totally familiar with event-talk yet.
I would be grateful, if someone would explain briefly what kind of conditions this trigger sets. Thanks.
province_event = { # The clergy feel that the time is ripe to spread the word of God in this province
id = 9050
picture = "event_religion"
trigger = {
condition = { type = not value = { type = religion value = catholic } }
condition = { type = ruler_religion value = catholic }
condition = { type = or
condition = { type = capital value = yes }
condition = { type = and
condition = { type = clergy_power value = 0.15 }
condition = { type = clergy_loyalty value = 0.9 }
}
}
condition = { type = not value = { type = trait value = excommunicated } }
condition = { type = not value = { type = trait value = heretic } }
condition = { type = not value = { type = trait value = sceptical } }
}
I would be grateful, if someone would explain briefly what kind of conditions this trigger sets. Thanks.
province_event = { # The clergy feel that the time is ripe to spread the word of God in this province
id = 9050
picture = "event_religion"
trigger = {
condition = { type = not value = { type = religion value = catholic } }
condition = { type = ruler_religion value = catholic }
condition = { type = or
condition = { type = capital value = yes }
condition = { type = and
condition = { type = clergy_power value = 0.15 }
condition = { type = clergy_loyalty value = 0.9 }
}
}
condition = { type = not value = { type = trait value = excommunicated } }
condition = { type = not value = { type = trait value = heretic } }
condition = { type = not value = { type = trait value = sceptical } }
}