
# All leaders will have a common trait-point value set in defines, which they use to grab traits

# leader_trait = { ruler } - this tags the trait as a leader-trait and not a species-trait
# initial = no - if set to no, this trait can not be granted to leaders when they are generated
# leader_class = { admiral scientist }  -- OR  - if not set, it can be given to all leader-types except Rulers
# requires_traits = { trait_psionic } -- AND - leader-trait can only be randomly given on generation if the leaders species has this trait
# requires_governments = { despotic_hegemony ai_overlordship } -- OR - leader-trait can only be randomly given on generation if the Empire has this type of government form
# prerequisites = { tech_psionic_theory } - AND - leader-trait can only be given if the technology specified has been researched by the Empire

#################
#  Ruler Traits #
#################

# Ruler-traits have the same parameters as leader-traits
# leader_class has to be set to include "ruler" for a ruler to be valid for a trait
# modifiers granted to rulers are applied to the entire Empire

leader_trait_ruler_est_mystic = {
	cost = 0
	icon = "gfx/interface/icons/traits/leader_traits/leader_trait_est_mystic.dds"
	
	modifier = {
		country_unity_produces_mult = 0.05
	}
	leader_trait = { ruler }
	leader_class = { ruler }
	initial = no
	randomized = no
}

leader_trait_ruler_est_cognition_central = {
	cost = 0
	icon = "gfx/interface/icons/traits/leader_traits/leader_trait_est_cognition_central.dds"
	
	modifier = {
		leaders_upkeep_mult = -0.10
	}
	leader_trait = { ruler }
	leader_class = { ruler }
	initial = no
	randomized = no
}

leader_trait_ruler_est_chivalry = {
	cost = 0
	icon = "gfx/interface/icons/traits/leader_traits/leader_trait_est_chivalry.dds"
	modifier = {
		country_unity_produces_mult = 0.05
	}
	leader_trait = { ruler }
	leader_class = { ruler }
	initial = no
	randomized = no
}

leader_trait_ruler_est_chivalry_hero = {
	cost = 0
	icon = "gfx/interface/icons/traits/leader_traits/leader_trait_est_chivalry_hero.dds"
	modifier = {
		pop_happiness = 0.05
		country_unity_produces_mult = 0.10
	}
	leader_trait = { ruler }
	leader_class = { ruler }
	initial = no
	randomized = no
}

leader_trait_ruler_est_individualism_inspiration = {
	cost = 0
	icon = "gfx/interface/icons/traits/leader_traits/leader_trait_est_individualism_inspiration.dds"
	modifier = {
		starbase_shipyard_build_cost_mult = -0.15
		armies_cost_mult = -0.15
		planet_buildings_cost_mult = -0.15
		shipclass_starbase_build_cost_mult = -0.15
		deposit_blockers_cost_mult = -0.15
	}
	leader_trait = { ruler }
	leader_class = { ruler }
	initial = no
	randomized = no
}