﻿# Determine whether a type of goods is cheap enough to be exported
#
# If a goods has `wants_high_supply` in default strategy and `wants_export` in admin strategy,
# the admin strategy would overwrite the default stance.
# This is undesirable, since the `wants_export` stance has lower evaluation score than `wants_high_supply`.
#
# Supported Scopes: country
kai_has_high_supply = {
	market = {
		mg:$GOODS$ = {
			market_goods_cheaper > {
				value = 1
				subtract = define:NAI|PRODUCTION_BUILDING_OUTPUT_HIGH_PRICE_THRESHOLD
			}
		}
	}
}

# Determine whether the country can afford to pass laws that add institutions
#
# Supported Scopes: country
kai_can_afford_institution = {
	bureaucracy > 0
	approaching_bureaucracy_shortage = no
	kai_estimated_bureaucracy_cost < {
		value = kai_country_income_normalized
		multiply = 0.35
	}
}
