title_decisions = {
	djd_convertrelig_province = {
		only_playable = yes
		ai = no
		
		from_potential = {
			has_dlc = "Mystics"
			is_ruler = yes
		}
		
		potential = {
			tier = COUNT
			location = { NOT = { religion = FROM } }
			holder_scope = {
				OR = {
					is_liege_or_above = FROM
					character = FROM
				}
			}
		}
		
		allow = {
			FROM = {
				scaled_wealth >= 0
			}
			location = {
				NOT = { religion = FROM }
				owner = { NOT = { religion = PREV } } # Cannot convert counties of owners who has that religion
			}
		}
		
		effect = {
			FROM = {
				change_scaled_wealth = -3
				hidden_tooltip = { character_event = { id = djdcrp.001 } }
			}
			location = {
				religion = FROM
				add_province_modifier = {
					name = peasant_unrest
					years = 2
				}
			}
			hidden_tooltip = {
				if = { # Notify county owner
					limit = {
						holder_scope = { NOT = { character = FROM } }
					}
					holder_scope = { character_event = { id = djdcrp.001 } }
				}
			}
		}
		
	}
	}