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_brapru.35 君主的遗嘱

时间范围:1700.1.1 - 1836.1.1,每月 1% 概率触发

触发条件

  • 国家拥有君主。
  • 国家拥有继承人。
  • 政府类型为君主制。
  • 君主满足以下所有条件:
    • 年龄大于50岁。
    • 子嗣数量大于2。
    • 至少有一个存活的、非继承人、男性子嗣。

关键效果

  • 选项 A (历史选项)
    • 合法性遭受严重惩罚。
    • 将君主的一个随机、存活、非继承人、男性子嗣指定为新的继承人。
    • 50%概率:贵族阶层满意度获得轻微增益。
    • 50%概率:贵族阶层满意度遭受轻微惩罚。
  • 选项 B
    • 合法性获得微弱增益。
    • 贵族阶层满意度获得微弱增益。

背景介绍: 在君主制国家,年迈君主的继承问题常常是宫廷政治的核心。当君主年事已高且子嗣众多时,他可能倾向于修改遗嘱,选择自己偏爱的儿子而非法定继承人来继承王位。这一决定虽然可能满足君主个人的意愿,但往往会引发关于继承合法性的争议,并动摇贵族阶层对王室的支持,为国家的未来埋下不稳定的种子。

完整事件代码

flavor_brapru.35 = { #Monarch's Last Will
	type = country_event
	title = flavor_brapru.35.title
	desc = flavor_brapru.35.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = BRA
		tag = PRU
		from = 1700.1.1
		to = 1836.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		heir ?= {
			save_scope_as = target_heir
		}
		ruler ?= {
			save_scope_as = target_ruler
		}
		ruler ?= {
			random_child = {
				limit = {
					father = root.ruler
					is_alive = yes
					is_heir = no
					is_female = no
				}
				save_scope_as = favorite_child
			}
		}
	}

	trigger = {
		has_ruler = yes
		has_heir = yes
		government_type = government_type:monarchy
		ruler ?= {
			age_in_years > 50
			num_of_children > 2
			any_child = {
				is_alive = yes
				is_heir = no
				is_female = no
			}
		}
	}

	option = {
		name = flavor_brapru.35.a
		historical_option = yes
		add_legitimacy = legitimacy_severe_penalty
		set_as_designated_heir = {
			target = scope:favorite_child
			reason = preferred_heir_of_ruler
		}
		random_list = {
			50 = {
				add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
			}
			50 = {
				add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty }
			}
		}
	}

	option = {
		name = flavor_brapru.35.b
		add_legitimacy = legitimacy_weak_bonus
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_weak_bonus }
	}
}