#Specific countries are to seek alliance with the Americans regardless of governing party.
#This should not happen if either the country in question or the American government is fascistic, nationalistic or communist.
##WIP:
#Democratic Socialists and Progressives will be less willing to ally with Republicans
#Reactionaries will be less willing to ally with Democrats

seek_NATO_membership = {
	enable = {
		#for now, a specific number of countries
		#we can make this more fluent later on
		
		#Let's not be wonky. No self-love for America today!
		NOT = {
			tag = USA
		}
		OR = {
			#The original crew
			tag = BEL
			tag = CAN
			tag = DEN
			tag = FRA
			tag = ICE
			tag = ITA
			tag = LUX
			tag = HOL
			tag = NOR
			tag = POR
			tag = ENG
			
			#Those who joined between 1952 and 1999
			tag = GRE
			tag = TUR
			tag = GER
			tag = SPR
			tag = CZE
			tag = HUN
			tag = POL
			
			#The squad of 2004
			tag = BUL
			tag = EST
			tag = LAT
			tag = LIT
			tag = ROM
			tag = SLO
			tag = SLV
			
			#Team 2009
			tag = ALB
			tag = CRO
			
			#Why not give little Kosovo a shot? They love America.
			tag = KOS
		}
		#no non-democrats allowed
		OR = {
			has_government = reactionary
			has_government = conservative
			has_government = market_liberal
			has_government = social_liberal
			has_government = social_democrat
			has_government = progressive
			has_government = democratic_socialist
		}
		#MURICAn democracy needed
		OR = {
			USA = { has_government = reactionary }
			USA = { has_government = conservative }
			USA = { has_government = market_liberal }
			USA = { has_government = social_liberal }
			USA = { has_government = social_democrat }
			USA = { has_government = progressive }
			USA = { has_government = democratic_socialist }
		}
	}
	abort = {
		OR = {
			has_war_with = USA
			OR = {
				has_government = islamist
				has_government = nationalist
				has_government = communist
				has_government = fascist
			}
			OR = {
				USA = { has_government = islamist }
				USA = { has_government = nationalist }
				USA = { has_government = communist }
				USA = { has_government = fascist }
			}
			#If America doesnt exist, this doesnt make sense.
			NOT = { country_exists = USA }
		}
	}
	
	#NATO people love America
	ai_strategy = {
		type = befriend
		id = "USA"			
		value = 200
	}
	ai_strategy = {
		type = alliance
		id = "USA"			
		value = 200
	}	
	
	#They also adore those Pro-Murican East Asians
	ai_strategy = {
		type = befriend
		id = "JAP"			
		value = 20
	}
	ai_strategy = {
		type = befriend
		id = "KOR"			
		value = 20
	}
	ai_strategy = {
		type = befriend
		id = "CHI"			
		value = 20
	}
	
	#But hey hate Putin and his Chinese bitches
	ai_strategy = {
		type = antagonize
		id = "PRC"
		value = 50
	}
	ai_strategy = {
		type = antagonize
		id = "SOV"
		value = 50
	}
}