﻿#Checks for active projects of the Naturalist
REPLACE:agassiz_geologist_project_active_trigger = {
	OR = {
		has_journal_entry = je_agassiz_geological_research
		has_variable = agassiz_volcano_expedition_active_var
		has_journal_entry = je_agassiz_find_coal_project
		has_journal_entry = je_agassiz_find_iron_project
		has_journal_entry = je_agassiz_find_lead_project
		has_journal_entry = je_agassiz_find_sulfur_project
		has_journal_entry = je_agassiz_find_gold_project
		has_journal_entry = je_agassiz_find_uranium_project
		has_journal_entry = je_agassiz_find_oil_project
		has_journal_entry = je_agassiz_mid_atlantic_ridge
		has_journal_entry = je_agassiz_find_commonores_project #T&R
		has_journal_entry = je_agassiz_find_bauxite_project #T&R
		has_journal_entry = je_agassiz_find_copper_project #T&R
		has_journal_entry = je_agassiz_find_rare_earths_project #T&R
		has_journal_entry = je_agassiz_find_advancedores_project #T&R
		has_journal_entry = je_agassiz_find_gas_project #T&R
	}
}

############################

##Tech&Res
#Commonores
agassiz_can_find_commonores_vein_trigger = {
	any_scope_building = {
		is_building_type = building_commonores_mine
		level > 0
		NOT = {
			has_modifier = agassiz_building_production_mult_modifier
		}
	}
}

#Bauxite
agassiz_can_find_bauxite_vein_trigger = {
	any_scope_building = {
		is_building_type = building_bauxite_mine
		level > 0
		NOT = {
			has_modifier = agassiz_building_production_mult_modifier
		}
	}
}

#Copper
agassiz_can_find_copper_vein_trigger = {
	any_scope_building = {
		is_building_type = building_copper_mine
		level > 0
		NOT = {
			has_modifier = agassiz_building_production_mult_modifier
		}
	}
}

#Advancedores
agassiz_can_find_advancedores_vein_trigger = {
	any_scope_building = {
		is_building_type = building_advancedores_mine
		level > 0
		NOT = {
			has_modifier = agassiz_building_production_mult_modifier
		}
	}
}

#Rare Earths
agassiz_can_find_rare_earths_vein_trigger = {
	any_scope_building = {
		is_building_type = building_rare_earths_mine
		level > 0
		NOT = {
			has_modifier = agassiz_building_production_mult_modifier
		}
	}
}

#Gas
agassiz_can_find_gas_trigger = {
	any_scope_building = {
		is_building_type = building_natural_gas_rig
		level > 0
		NOT = {
			has_modifier = agassiz_building_production_2_mult_modifier
		}
	}
}