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_tur.5 贵族特权与中央集权

时间范围:1600.1.1 - 1700.1.1(每月 5% 概率)

触发条件

  • 国家已采用政府改革:安纳托利亚贝伊国 (has_reform = government_reform:anatolian_beylik)
  • 贵族阶层 (estate_type:nobles_estate) 的影响力超过 40% ("estate_power(estate_type:nobles_estate)" > 0.4)
  • 贵族阶层拥有的特权数量大于 2 (num_estate_privileges:nobles_estate > 2)

关键效果

  • 选项 A (历史选项)
    • 贵族阶层满意度小幅提升 (add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus })
    • 社会价值观向贵族政治方向移动 (change_societal_value = { type = aristocracy_vs_plutocracy value = societal_value_move_to_right })
    • 社会价值观向权力下放方向移动 (change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_right })
  • 选项 B
    • 贵族阶层满意度小幅降低 (add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty })
    • 政府力量小幅减少 (add_government_power = government_power_mild_penalty)
  • 选项 C
    • 前提:存在一个随机选中的贵族阶层特权 (exists = scope:target_privilege)
    • 废除该随机选中的贵族阶层特权 (revoke_estate_privilege = scope:target_privilege)
    • 贵族阶层满意度大幅降低 (add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_penalty })
    • 稳定性大幅下降 (add_stability = { value = stability_ultimate_penalty }),并可能根据特权废除成本修正系数 (modifier:revoke_privilege_cost_modifier) 进一步调整稳定性损失或获得少量增益。

背景介绍: 在17世纪,奥斯曼帝国(TUR)的安纳托利亚贝伊国体制下,地方贵族(贝伊)势力日益壮大,他们通过积累特权和影响力,对中央权威构成了挑战。当贵族阶层的影响力超过一定阈值且特权众多时,中央政府将面临一个关键抉择:是进一步安抚和拉拢贵族以维持现状,还是尝试削弱其特权以加强中央集权,但这将冒着引发贵族强烈不满和政局动荡的巨大风险。

完整事件代码

flavor_tur.5 = {
	hide_portraits = yes
	type = country_event
	title = flavor_tur.5.title
	desc = flavor_tur.5.desc

	historical_info = flavor_tur.5.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1600.1.1
		to = 1700.1.1
		monthly_chance = 5
	}


	trigger = {
		has_reform = government_reform:anatolian_beylik
		"estate_power(estate_type:nobles_estate)" > 0.4
		num_estate_privileges:nobles_estate > 2
	}

	immediate = {
		random_estate_privilege = {
			limit = {
				estate_type = estate_type:nobles_estate
			}
			save_scope_as = target_privilege
		}
	}


	option = {
		name = flavor_tur.5.a
		historical_option = yes
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
		change_societal_value = { type = aristocracy_vs_plutocracy value = societal_value_move_to_right }
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_move_to_right }

	}
	option = {
		name = flavor_tur.5.b
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty }
		add_government_power = government_power_mild_penalty
	}
	option = {
		name = flavor_tur.5.c
		trigger = {
			exists = scope:target_privilege
		}

		revoke_estate_privilege =  scope:target_privilege
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_penalty }
		add_stability = {
			value = stability_ultimate_penalty
			if = {
				limit = {
					modifier:revoke_privilege_cost_modifier > 0
				}
				add = {
					value = stability_ultimate_penalty
					multiply = modifier:revoke_privilege_cost_modifier
				}
			}
			else_if = {
				limit = {
					modifier:revoke_privilege_cost_modifier < 0
				}
				add = {
					value = stability_ultimate_bonus
					multiply = modifier:revoke_privilege_cost_modifier
				}
			}
		}
	}
}