How come my levies from my Theocratic Realm Priest is capped at 49? Shouldn't they be at 100% of his Levies since my opinion with him is over 50%? Thanks for any help.
Last edited:
Ah looks like the Wiki is pretty misleading...If you have a theocratic clergy in your faith, so that realm priests hold temple holdings, you get 50% of their income/levies at +100 opinion. That is the maximum value.
There's more to it, but for the sake of giving you a quick answer: no, 100% at +100 opinion are - and never were - a thing.
When a ruler's religion has the Theocratic Doctrine, temples are leased to a Realm Priest as church holdings. The realm priest provides their liege with taxes and levies based on their opinion. The minimum is at 0 opinion, where no taxes or levies are provided, and the maximum is at 50 opinion, where 50% of the taxes and 100% of the levies are provided. Unlike leases to holy orders, there is no option to revoke church holdings.
One thing to note is you are a vassal, so 25% of your realm priest's taxes and 15% of their levies go to your liege's realm priest. The remainder is then given out based on your realm priest's opinion of you.How come my levies from my Theocratic Realm Priest is capped at 49? Shouldn't they be at 100% of his Levies since my opinion with him is over 50%? Thanks for any help.
It's actually that you get 50% of their remaining income at 50% opinion and 100% of the remaining levies at 100% opinion.If you have a theocratic clergy in your faith, so that realm priests hold temple holdings, you get 50% of their income/levies at +100 opinion. That is the maximum value.
There's more to it, but for the sake of giving you a quick answer: no, 100% at +100 opinion are - and never were - a thing.
tax = {
lease_liege = 25
rest = {
max = 50 # when updating the weights also update this value. It is used in the tooltip and should be the maximin posible weight
weight = {
base = 0
modifier = {
add = 50
scope:ruler = {
has_strong_hook = scope:lessee
}
}
opinion_modifier = { # Opinion Factor
min = 0
max = 50
who = scope:lessee
opinion_target = scope:ruler
trigger = {
NOT = {
scope:ruler = {
has_strong_hook = scope:lessee
}
}
}
multiplier = {
value = 50
divide = @ruler_share_top_opinion_from_lessee
}
}
}
}
}
levy = {
lease_liege = 15
rest = {
max = 100 # when updating the weights also update this value. It is used in the tooltip and should be the maximin posible weight
weight = {
base = 0
modifier = {
add = 100
scope:ruler = {
has_strong_hook = scope:lessee
}
}
opinion_modifier = { # Opinion Factor
min = 0
max = 100
who = scope:lessee
opinion_target = scope:ruler
trigger = {
NOT = {
scope:ruler = {
has_strong_hook = scope:lessee
}
}
}
multiplier = {
value = 100
divide = @ruler_share_top_opinion_from_lessee
}
}
}
}
}