##########
# Format #
##########
#
# COUNTRY_TAG = { [PARAMETERS] }
#
##############
# Parameters #
##############
#
# date = { day = DD month = [MONTH_NAME] year = YYYY } # Country cannot be released before this date
# expirydate = { day = DD month = [MONTH_NAME] year = YYYY } # Country cannot be released after this date
# MONTH_NAME: january / february / march / april / may / june / july / august / september / october / november / december
#
# minimum = { PROV_ID PROV_ID ... PROV_ID } # List of provinces (by IDs) that are required for this country to be released. These are considered as Core provinces.
# extra = { PROV_ID PROV_ID ... PROV_ID } # List of provinces (by IDs) that are optional for this country. These are considered as Core provinces.
# capital = PROV_ID # ID of the province that is prefered to be capital of the new country. Usually it is part of minimum = { ... } list too.
# revolt = no/yes[DEFAULT] # If this country can be created by revolt (released by Rebels) or not. By default this is enabled.
# liberate = no/yes[DEFAULT] # If this country can be liberated by other countries or not. By default this is enabled.
#
# intrinsic_gov_type = [GOV_TYPE]
# GOV_TYPE:
# nazi / fascist / paternal_autocrat # These are considered as RIGHT regimes and can be released only by RIGHT policy countries
# social_conservative / market_liberal [DEFAULT] / social_liberal / social_democrat # These are considered as NEUTRAL regimes and can be released by any countries
# left_wing_radical / leninist / stalinist # These are considered as LEFT regimes and can be released only LEFT policy countries
# Defines prefered country regime. Used to refine availabe for relese countries list based on the policy of the current country.
# If there are 2 or more countries sharing TAG or regular_id, the country with closest intrinsic_gov_type will be made available for release.
#
# regular_id = [TAG]
# Defines if this country is a shadow country of [TAG] (like GER and DDR for example).
# Having more then one shadow country while allowed should be avoided when possible and those countries must differ in intrinsic_gov_type setting.
# This setting is used on coups/revolts and could trigger country TAG change.
# It is used as a filter on available for release countries list generation making only one country available based on the intrinsic_gov_type -
# the one with the closest Gov. type to the releaser country is made available.
# Wars between shadow countries and [TAG] are considered as civil and winner takes all (units, build queue etc.) on annexation.
#
# NOTE: intrinsic_gov_type and regular_id usage can be changed from misc.txt ("Filter used on available for release countries list based on regular_id and intrinsic_gov_type" modifier in "diplomacy" section)
#
##############################################
# New (optional) parameters for Darkest Hour #
##############################################
#
# country = { TAG1 TAG2 … TAGx } # Only countries in that list can release the country
# no = { TAG1 TAG2 … TAGx } # Countries in that list cannot release the country
# not = { TAG1 TAG2 … TAGx } # The country cannot be released if any of those countries exist at the moment
# claims = { PROV_ID …} # List of provinces (by IDs) that are claimed by this country. These are not required for release and are considered as Claimed provinces.
# min = X # Allows release if at least X provinces of minimum list are controlled by releaser country. By default (no min entry or min = -1) it is equal to provinces in minimum list.
# min_extra = X # Allows release if at least X provinces of extra list are controlled by releaser country. By default (no min_ extra entry) it is 0.
#
# coup = { TAG1 TAG2 … TAGx } # Used only when "Used change TAG on coup logic." modifier in misc.txt is set to 1!
# On coup country that have such list defined can change its TAG to countries from that list only
# (the TAG of country that can be created AND has the closest intrinsic_gov_type to the country that initiated the coup will be used for the switch).
#
# value = X.X (0.0 – 1.25) # Used by the old release model only (when no min or min_extra are defined).
# When 'score' is above that value the country will be available for release (see below for details). By default (no value) it is 0.51.
# A country will be available for liberation if it has at least 0.51 final score (can be changed - see above).
# Capital province gives 0.25 and (available minimum provinces / total minimum) provinces gives the rest.
# Claims, cores and current capital excluded of the liberator are excluded from the above calculation!
# If minimum list is empty, but extra is not, then extra list will be used in place of the minimum. Otherwise extra list is not used.
#
##############################################