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_fra.1102 附庸采邑的吞并

时间范围
事件无 fromto 日期限制,触发概率未指定 monthly_chance

触发条件

  • 目标对象 scope:target 必须存在。
  • 目标对象 scope:target 必须为 AI 控制的国家。
  • 目标对象 scope:target 必须拥有政府改革 french_appanage_reform(法国采邑改革)。
  • 本国必须拥有政府改革 french_feudal_nobility(法国封建贵族)。

关键效果

选项 A:我们应当谨慎行事

  • 改变社会价值观:centralization_vs_decentralization(中央集权 vs. 地方分权)向“右”(即加强地方分权方向)轻微移动。
  • 增加稳定性惩罚:stability_mild_penalty
  • AI 选择权重:基础值为 1。

选项 B:推动中央集权!

  • 改变社会价值观:centralization_vs_decentralization(中央集权 vs. 地方分权)向“左”(即加强中央集权方向)轻微移动。
  • 对每一个满足以下条件的国家:
    • 是法国的附属国。
    • 拥有政府改革 french_appanage_reform(法国采邑改革)。
    • 添加对法国的意见修正:opinion_fra_annexed_appanage
  • AI 选择权重:基础值为 1。

背景介绍
该事件反映了法国王室在封建制度下,面对拥有“采邑”特权的贵族附庸时所面临的政治抉择。采邑制度赋予地方贵族高度的自治权,削弱了中央王权的直接控制。当法国国王试图进一步整合国家、加强中央权威时,是否以及如何吞并这些采邑附庸,成为一个关键的政治问题。选择谨慎行事可以维持贵族阶层的稳定,但会强化地方分权趋势;而强行推动中央集权则可能引发其他采邑附庸的不满,影响王国内部的忠诚与稳定。

完整事件代码

flavor_fra.1102 = { # Annexation of an Appanage
	type = country_event
	title = flavor_fra.1102.title
	desc = flavor_fra.1102.desc

	trigger = {
		exists = scope:target
		scope:target = {
			is_ai = yes
			has_reform = government_reform:french_appanage_reform
		}
		has_reform = government_reform:french_feudal_nobility
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	option = { # We should exercise caution
		name = flavor_fra.1102.a
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_minor_move_to_right
		}
		add_stability = stability_mild_penalty
		ai_chance = {
			base = 1
		}
	}
	option = { # Press for centralization!
		name = flavor_fra.1102.b
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_minor_move_to_left
		}
		every_country = {
			limit = {
				is_subject_of = c:FRA
				has_reform = government_reform:french_appanage_reform
			}
			add_opinion = { target = c:FRA modifier = opinion_fra_annexed_appanage }
		}
		ai_chance = {
			base = 1
		}
	}
}