﻿# Court Alchemist Tasks

# Task 1: Focus on Potions
alchemist_task_focus_potions = {
	court_position_types = { 
		court_alchemist_court_position
	}
	cost = {
		round = no
		gold = {
			add = {
				value = monthly_court_position_task_cost
				desc = COURT_POSITION_TASK_COST_BREAKDOWN_BASE
				format = "BASE_VALUE_FORMAT_DECIMALS_PLUS_NEGATIVE"
			}
		}
	}
	employee_modifier = {
		monthly_prestige = minor_court_position_task_prestige_salary
	}

	scaling_employer_modifiers = {
		terrible = { health = 0.01 }
		poor = { health = 0.03 }
		average = { health = 0.05 }
		good = { health = 0.07 }
		excellent = { health = 0.1 }
	}

	ai_will_do = {
		value = 30
	}
}

# Task 2: Focus on poisons
alchemist_task_focus_poisons = {
	court_position_types = { 
		court_alchemist_court_position
	}
	cost = {
		round = no
		gold = {
			add = {
				value = monthly_court_position_task_cost
				desc = COURT_POSITION_TASK_COST_BREAKDOWN_BASE
				format = "BASE_VALUE_FORMAT_DECIMALS_PLUS_NEGATIVE"
			}
		}
	}
	employee_modifier = {
		monthly_prestige = minor_court_position_task_prestige_salary
	}
	
	scaling_employer_modifiers = {
		terrible = { hostile_scheme_phase_duration_add = -2 }
		poor = { hostile_scheme_phase_duration_add = -4 }
		average = { hostile_scheme_phase_duration_add = -6 }
		good = { hostile_scheme_phase_duration_add = -8 }
		excellent = { hostile_scheme_phase_duration_add = -10 }
	}

	ai_will_do = {
		value = 30
	}
}

# GÖREV 3: Life Essence Experiments
alchemist_task_life_essence = {
	court_position_types = { 
		court_alchemist_court_position
	}
	cost = {
		round = no
		gold = {
			add = {
				value = monthly_court_position_task_cost
				desc = COURT_POSITION_TASK_COST_BREAKDOWN_BASE
				format = "BASE_VALUE_FORMAT_DECIMALS_PLUS_NEGATIVE"
			}
		}
	}
	employee_modifier = {
		monthly_prestige = minor_court_position_task_prestige_salary
	}

	scaling_employer_modifiers = {
		terrible = { monthly_learning_lifestyle_xp_gain_mult = 0.05 }
		poor = { monthly_learning_lifestyle_xp_gain_mult = 0.10 }
		average = { monthly_learning_lifestyle_xp_gain_mult = 0.15 }
		good = { monthly_learning_lifestyle_xp_gain_mult = 0.20 }
		excellent = { monthly_learning_lifestyle_xp_gain_mult = 0.25 }
	}

	ai_will_do = {
		value = 30
	}
}