﻿# Checks if the character is eligible to start a succession crisis
is_eligible_for_succession_crisis = {
	# Government blacklist
	NOT = {
		OR = {
			has_government = republic_government
			has_government = theocracy_government
			has_government = herder_government
			has_government = holy_order_government
			has_government = mercenary_government
			has_government = nomad_government
			has_trait = nightswatch

			has_government = meritocratic_government
			has_government = steppe_admin_government
			has_government = japan_administrative_government
			has_government = japan_feudal_government

			has_government = mandala_government
			
			is_governor = yes
		}
	}
}