• 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.

Varyar

POPpet Master
28 Badges
Sep 8, 2002
2.900
33
  • Europa Universalis IV
  • Europa Universalis: Rome Collectors Edition
  • Europa Universalis IV: Pre-order
  • Europa Universalis III: Collection
  • 500k Club
  • Rome: Vae Victis
  • Victoria 2: A House Divided
  • Victoria 2
  • Europa Universalis: Rome
  • Victoria: Revolutions
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Heir to the Throne
  • For The Glory
  • Hearts of Iron Anthology
  • Europa Universalis III Complete
  • Europa Universalis III
  • Diplomacy
  • Deus Vult
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
  • Crusader Kings II
This is the event that fires if you give the clergy in a given province 0% power.

########################################
# Clergy question your devotion to God #
########################################

province_event = {
id = 5405
[...]
action_b = { #grant clergy the power they demand
effect = { type = ruler_prestige scale = -2.5 }
effect = { type = ruler_piety scale = 2 }
effect = { type = clergy_power value = 0.1 }
effect = { type = clergy_loyalty value = 0.1 }
effect = { type = peasant_loyalty value = 0.5 }
effect = { type = burgher_loyalty value = 0.75 }
effect = { type = noble_loyalty value = 0.5 }

}

As opposed to the same event for any of the other social groups:

########################################
# Peasants despise their lot in life #
########################################

province_event = {
id = 5401
[...]
action_b = { #grant them the power they demand
effect = { type = ruler_prestige scale = -2.5 }
effect = { type = peasant_power value = 0.1 }
effect = { type = peasant_loyalty value = 0.1 }
effect = { type = burgher_loyalty value = -0.5 }
effect = { type = clergy_loyalty value = -0.5 }
effect = { type = noble_loyalty value = -0.75 }

}

I'd assume that the clergy event, just like the other events, should decrease loyalty rather than increasing it.
 
Upvote 0