Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

flavor_hab.75 秘密枢密院日益低效

时间范围:1660.1.1 - 1705.1.1(每月 1% 概率)

触发条件

  • 国家必须满足以下任一条件:
    1. 同时拥有 geheimrat 科技和 government_reform:hab_geheimer_rat 政府改革。
    2. 拥有 government_reform:privy_council 政府改革。
  • 宫廷中至少有 20 名廷臣。

关键效果

  • 选项 A (flavor_hab.75.a)

    • 减少 6 金币。
    • 为国家添加持续 15 年的 geheimer_konferenz 修正(模式为叠加并延长)。
    • 使社会价值观 traditionalist_vs_innovative 向左移动(偏向传统主义)。
  • 选项 B (flavor_hab.75.b)

    • 为国家添加持续 15 年的 abolished_the_geheimer_rat 修正(模式为叠加并延长)。
    • 使社会价值观 traditionalist_vs_innovative 向右移动(偏向创新)。
    • 设置变量 abolished_geheimer_rat
    • 移除政府改革 government_reform:hab_geheimer_rat

背景介绍: 在17世纪中后期,哈布斯堡君主国的核心决策机构——秘密枢密院(Geheimer Rat)逐渐暴露出效率低下、官僚臃肿的问题。随着宫廷规模的扩大和行政事务的复杂化,这一曾经高效的中央集权工具变得反应迟缓、成本高昂,引发了关于是进行改革重组还是直接废除该机构以寻求更现代化治理方式的争论。

完整事件代码

flavor_hab.75 = { #Geheimer Rat Growing Inefficient
	type = country_event
	title = flavor_hab.75.title
	desc = flavor_hab.75.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1660.1.1
		to = 1705.1.1
		monthly_chance = 1
	}

	trigger = {
		OR = {
			AND = {
				has_advance = geheimrat
				has_reform = government_reform:hab_geheimer_rat
			}
			has_reform = government_reform:privy_council
		}
		any_courtier = {
			count > 20
		}
	}

	option = {
		name = flavor_hab.75.a
		change_gold_effect = { scale = -6 }
		add_country_modifier = {
			modifier = geheimer_konferenz
			years = 15
			mode = add_and_extend
		}
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_hab.75.b
		add_country_modifier = {
			modifier = abolished_the_geheimer_rat
			years = 15
			mode = add_and_extend
		}
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_right
		}
		set_variable = abolished_geheimer_rat
		remove_reform = government_reform:hab_geheimer_rat
	}
}