
is_great_power = {
	custom_trigger_tooltip = {
		tooltip = eoanb_is_great_power_tt
		is_non_player_tag = no
		check_variable = { 
			var = score_array_position_var
			value = 8		
			compare = less_than_or_equals 
		}
	}
}

is_secondary_power = {
	custom_trigger_tooltip = {
		tooltip = eoanb_is_secondary_power_tt
		is_non_player_tag = no
		check_variable = { 
			var = score_array_position_var
			value = 8
			compare = greater_than
		}		
		check_variable = { 
			var = score_array_position_var
			value = 16 		
			compare = less_than_or_equals 
		}
	}
}

is_minor_power = {
	custom_trigger_tooltip = {
		tooltip = eoanb_is_minor_power_tt
		is_non_player_tag = no
		check_variable = {
			var = score_array_position_var
			value = 16
			compare = greater_than
		}
		check_variable = { 
			var = score_array_position_var
			value = 40 		
			compare = less_than_or_equals 
		}
	}
}

is_insignificant_power = {
	custom_trigger_tooltip = {
		tooltip = eoanb_is_insignificant_power_tt
		OR = {
			is_non_player_tag = no
			check_variable = { 
				var = score_array_position_var
				value = 40 		
				compare = greater_than
			}
		}
	}
}

is_not_great_power = {
	custom_trigger_tooltip = {
		tooltip = eoanb_is_not_great_power_tt
		is_non_player_tag = no
		check_variable = { 
			var = score_array_position_var
			value = 8
			compare = greater_than
		}
	}
}
