• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Stratagyfan101

Lt. General
16 Badges
Jun 16, 2009
1.298
2.208
  • Crusader Kings II
  • Deus Vult
  • Europa Universalis III Complete
  • Divine Wind
  • For the Motherland
  • Hearts of Iron III
  • Heir to the Throne
  • Rome Gold
  • Semper Fi
  • Victoria 2: A House Divided
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Victoria 2
  • 500k Club
  • Europa Universalis IV: Pre-order
Code:
character_event = { #Your Diocese Bishop petitions you for permission to try to convert the heathen masses - Catholic

	id = 9025
	picture = "event_chaplain"

	trigger = {
		condition = { type = ruler }
		condition = { type = religion value = catholic }
		condition = { type = piety value = 25 }
		condition = { type = not value = { type = trait value = sceptical } }
		condition = { type = not value = { type = trait value = heretic } }
		condition = { type = not value = { type = trait value = excommunicated } }
		condition = {
			type = chaplain_csc
			condition = {
			type = and
				condition = {
					type = or
					condition = { type = trait value = martial_cleric }
					condition = { type = trait value = mastermind_theologian }
				}
				condition = { type = not value = { type = trait value = zealous } }
				condition = { type = not value = { type = trait value = sceptical } }
				condition = { type = not value = { type = trait value = heretic } }
				condition = { type = not value = { type = trait value = excommunicated } }
				condition = { type = not value = { type = trait value = illness } }
				condition = { type = not value = { type = trait value = intestinal_worm } }
				condition = { type = not value = { type = trait value = pneumonia } }
				condition = { type = not value = { type = trait value = plagueinfested } }
				condition = { type = not value = { type = trait value = leper } }
				condition = { type = piety value = 10 }
				condition = { type = loyalty value = 0.9 }
			}
		}
		condition = {
			type = any_demesne_province
			condition = { type = not value = { type = religion value = catholic } }
		}
	}
Couple of questions. Or rather just to reassure my assumptions.
1) Does the first trigger just mean I have to own the province? And all but the last are traits regarding my ruler correct?
2) The last line is regarding my bishop, so he has to be either martial cleric or mastermind theologian, have a loyalty value greater than 90%, 10 piety and cant have those other traits, no?