#	Example:
# 
#	example_dynamic_modifier = {
#		icon = "GFX_idea_unknown" # optional, will show up in guis if icon is specified
#		enable = { always = yes } #optional, the modifier won't apply if not enabled
#		remove_trigger = { always = no } #optional, will remove the modifier if true
#       attacker_modifier = no  # if yes this modifier will also be read in combat for 
#                               # people engaging in the combat even if not in the state
#
#		# list of modifiers
#		fuel_cost = 321
#		max_fuel = var_max_fuel # will be taken from a variable
#	}
#
#
#	In a script file:
#
#	effect = {
#		add_dynamic_modifier = {
#			modifier = example_dynamic_modifier
#			scope = GER # optional, if you specify this your dynamic modifier scoped to this scope (root is the effect scope)
#			days = 14 # optional, will be removed after this many days passes
#		}
#	}
#
#	can be added to countries, states or unit leaders
#	will only updated daily, unless forced by force_update_dynamic_modifier effect

heavy_bolshevik_resistance = {
	enable = { always = yes }

	icon = GFX_modifiers_heavy_bolshevik_resistance
	
	recruitable_population_factor = -0.85
	local_building_slots_factor = -0.75
	state_resources_factor = -0.75
	state_production_speed_buildings_factor = -0.75
	army_speed_factor_for_controller = -0.5
	max_dig_in = -5
	attrition_for_controller = 0.4
}

medium_bolshevik_resistance = {
	enable = { always = yes }

	icon = GFX_modifiers_medium_bolshevik_resistance
	
	recruitable_population_factor = -0.65
	local_building_slots_factor = -0.50
	state_resources_factor = -0.5
	state_production_speed_buildings_factor = -0.5
	army_speed_factor_for_controller = -0.35
	max_dig_in = -3.5
	attrition_for_controller = 0.3
}

low_bolshevik_resistance = {
	enable = { always = yes }

	icon = GFX_modifiers_low_bolshevik_resistance
	
	recruitable_population_factor = -0.45
	local_building_slots_factor = -0.25
	state_resources_factor = -0.25
	state_production_speed_buildings_factor = -0.25
	army_speed_factor_for_controller = -0.2
	max_dig_in = -2
	attrition_for_controller = 0.2
}




	
