﻿##### Changed from Vanilla: Prevent hybridization between Hellenizers and Colonizers

# Checks if you could Hybridise with the culture without checking for acceptance
is_valid_for_hybridising_trigger = {
	$CHARACTER$ = {
		culture = {
			NOT = { has_same_culture_heritage = $CULTURE$ }
			culture_age >= culture_hybrid_cooldown
		}
		custom_description = {
			text = culture_present_in_realm_for_hybridization
			any_sub_realm_county = {
				culture = $CULTURE$
			}
		}
		custom_description = {
			text = culture_is_not_parent_culture
			culture = {
				NOT = {
					any_parent_culture = {
						this = $CULTURE$
					}
				}
			}
		}
		custom_description = {
			text = culture_is_not_child_culture
			$CULTURE$ = {
				NOT = {
					any_parent_culture = {
						this = $CHARACTER$.culture
					}
				}
			}
		}
		##### Changed from Vanilla vvvvv
		#    additional_parent_child_checks_trigger = { #For cultures with bastards
		#    	CHARACTER = $CHARACTER$
		#    	CULTURE = $CULTURE$
		#    	CULTURE_IN_QUESTION = romano_african
		#    }
		trigger_if = {
			limit = { culture = { has_cultural_parameter = monolithic_culture_feature } }
			custom_description = {
				text = must_have_duchy_or_better_to_hybridize
				primary_title.tier >= tier_duchy
			}
		}
		##### Changed from Vanilla ^^^^^
	}
}