#
# List of options showing in the Game Rules screen
#
# format is:
# rule_token = {
#	name = "TEXT_KEY_FOR_NAME"
#	required_dlc = "Name of the Required DLC"
#	desc = "TEXT_KEY_FOR_LONG_DESC"
#	group = "TEXT_KEY_FOR_GROUP"					# Used for filtering. A single rule can be in multiple groups
#	icon = gfx_option_token							# Optional icon
#	option = {										# Unless other specified, the first option is the default option
#		name = option_token
#		text = "TEXT_KEY_FOR_OPTION_NAME"
#		allow_achievements = no						# Achievements cannot be earned if one or more game rules are set to an option that has this property set to no.
#													# If not specified, this is set to yes for default options and no for all other options.
#	}
#	default = {										# Specify an option with the "default" token to override the behavior of treating the first option as the default.
#		name = option_token
#		text = "TEXT_KEY_FOR_OPTION_NAME"
#		...
#	}
# }

### ФРАКЦИИ(FACTION)

allow_create_faction = {
	name = "RULE_ALLOW_CREATE_FACTION"
	group = "RULE_GROUP_FACTION"
	icon = "GFX_coups"
	option = {
		name = "BLOCKED"
		text = "NWFAJG_RULE_OPTION_BLOCKED"
		desc = "RULE_ALLOW_CREATE_FACTION_LIMITED_DESC"
		allow_achievements = yes
	}
	default = {
		name = "FREE"
		text = "NWFAJG_RULE_OPTION_ALLOWED"
		desc = "RULE_ALLOW_CREATE_FACTION_FREE_DESC"
		allow_achievements = yes
	}
}

allow_join_faction = {
	name = "RULE_ALLOW_JOIN_FACTION"
	group = "RULE_GROUP_FACTION"
	icon = "GFX_take_over_faction_leadership"
	option = {
		name = "BLOCKED"
		text = "NWFAJG_RULE_OPTION_BLOCKED"
		desc = "RULE_ALLOW_JOIN_FACTION_LIMITED_DESC"
		allow_achievements = yes
	}
	default = {
		name = "FREE"
		text = "NWFAJG_RULE_OPTION_ALLOWED"
		desc = "RULE_ALLOW_JOIN_FACTION_FREE_DESC"
		allow_achievements = yes
	}
}
