﻿bureaucrats = {
	texture = "gfx/interface/icons/pops_icons/bureaucrats.dds"
	color = hsv{ 0.25 0.4 0.5 }
	start_quality_of_life = 10
	wage_weight = 4
	paid_private_wage = yes
	literacy_target = 0.40
	education_access = 0.50
	dependent_wage = 0.5	# per year
	unemployment = yes

	# 50% - 100% politically engaged
	political_engagement_base = 0.5
	political_engagement_literacy_factor = 0.5

	political_engagement_mult = {
		value = 1

		add = {
			desc = "POP_STARVATION"

			if = {
				limit = {
					is_in_mild_starvation = yes
				}
				value = 0.5
			}
			else_if = {
				limit = {
					is_in_severe_starvation = yes
				}
				value = 1.5
			}
		}
	}

	qualifications_growth_desc = "BUREAUCRATS_QUALIFICATIONS_DESC"
	qualifications = {
		if = {
			limit = {
				is_peasant_under_serfdom = no 
				literacy_rate > 0.15
			}
			# baseline: ( literacy - 0.15 ) * 15 * ( 2 if accepted culture and religion), norm 10.5 for Literacy 50% and Accepted C/R
			add = {
				value = literacy_rate
				subtract = 0.15
				multiply = 20 #was 20
				desc = "QUALIFICATIONS_LITERACY_FACTOR"
			}

			if = {
				limit = {
					pop_acceptance >= acceptance_status_5
				}
				multiply = {
					value = 2
					desc = "POTENTIALS_CULTURAL_RELIGIOUS_ACCEPTANCE"
				}
			}
			else_if = {
				limit = {
					pop_acceptance >= acceptance_status_4
				}
				multiply = {
					value = 1
					desc = "POTENTIALS_CULTURAL_RELIGIOUS_ACCEPTANCE"
				}
			}
			if = {
				limit = {
					is_pop_type = peasants
				}
				multiply = {
					value = 0.1 #was none
					desc = "QUALIFICATIONS_FAVORED_TYPE"
				}
			}
			if = {
				limit = {
					is_pop_type = laborers
				}
				multiply = {
					value = 0.5 #was none
					desc = "QUALIFICATIONS_FAVORED_TYPE"
				}
			}
			if = {
				limit = {
					is_pop_type = officers
				}
				multiply = {
					value = 2.5
					desc = "QUALIFICATIONS_FAVORED_TYPE"
				}
			}
			if = {
				limit = {
					is_pop_type = clerks
				}
				multiply = {
					value = 10 #was 5
					desc = "QUALIFICATIONS_FAVORED_TYPE"
				}
			}
			if = {
				limit = {
					is_pop_type = clergymen
				}
				multiply = {
					value = 5
					desc = "QUALIFICATIONS_FAVORED_TYPE"
				}
			}
			if = {
				limit = {
					is_pop_type = engineers
				}
				multiply = {
					value = 5 #was none
					desc = "QUALIFICATIONS_FAVORED_TYPE"
				}
			}
			if = {
				limit = {
					state = {
						state_cultural_acceptance = { 
							target = PREV.culture
							value < acceptance_status_2
						}
					}
				}
				multiply = {
					value = 0.1
					desc = "QUALIFICATIONS_CULTURAL_DISCRIMINATION"
				}
			}
			else_if = {
				limit = {
					state = {
						state_cultural_acceptance = {  
							target = PREV.culture
							value < acceptance_status_3
						}
					}
				}
				multiply = {
					value = 0.25
					desc = "QUALIFICATIONS_CULTURAL_DISCRIMINATION"
				}
			}
			else_if = {
				limit = {
					state = {
						state_cultural_acceptance = {  
							target = PREV.culture
							value < acceptance_status_4
						}
					}
				}
				multiply = {
					value = 0.50
					desc = "QUALIFICATIONS_CULTURAL_DISCRIMINATION"
				}
			}
		}
		else_if = {
			limit = {
				is_peasant_under_serfdom = yes
			}
			value = {
				desc = "QUALIFICATIONS_PEASANTS_UNDER_SERFDOM"
				value = 0
			}
		}
		else = {
			value = {
				desc = "QUALIFICATIONS_INSUFFICIENT_LITERACY_DECAY"
				value = -1
			}
		}
	}

	portrait_age = {
		integer_range = {
			min = define:NPortrait|GRACEFUL_AGING_START
			max = define:NPortrait|GRACEFUL_AGING_END
		}
	}
	portrait_pose = { value = 0 }
	portrait_is_female = { always = yes }
}
