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_ara.210 兄弟阋墙

时间范围:1337.1.1 - 1380.1.1(每月 50% 概率触发)

触发条件

  • 政府类型为君主制。
  • 角色 ara_james_i_urgell(詹姆斯一世)存活,且不再是继承人。
  • 角色 ara_peter_iv_arago(彼得四世)存活,且是当前统治者。
  • 统治者 ara_peter_iv_arago 至少有一个孩子,且其中一位存活的女性后代被指定为继承人。
  • 贵族阶层拥有超过2项特权。

关键效果

  • 选项 A (历史选项)

    • 声望小幅下降。
    • 稳定度小幅下降。
    • 贵族阶层满意度小幅下降。
    • 设置变量 aragon_ruler_brother_fleeing_flag 为 1。
  • 选项 B

    • 正统性大幅下降。
    • 更改继承法为萨利克继承法。
    • 贵族阶层满意度小幅下降。

背景介绍: 该事件模拟了14世纪中叶阿拉贡王国(ARA)王室内部的一场继承危机。国王彼得四世指定其女儿为继承人,这违背了传统的男性继承原则,导致其兄弟詹姆斯一世(前继承人)的不满。同时,拥有特权的贵族阶层在此政治变动中扮演了重要角色,事件反映了中世纪王国中王权、继承法与贵族势力之间的复杂博弈。

完整事件代码

flavor_ara.210 = { #Quarreling Brothers
	type = country_event
	title = flavor_ara.210.title
	desc = flavor_ara.210.desc
	fire_only_once = yes
	dynamic_historical_event = {
		tag = ARA
		from = 1337.1.1
		to = 1380.1.1
		monthly_chance = 50
	}

	trigger = {
		government_type = government_type:monarchy

		#James is alive and no longer the heir
		character:ara_james_i_urgell = {
			is_alive = yes
			is_heir = no
		}

		#Peter the ruler, has had a daugther and made her the new heir
		character:ara_peter_iv_arago = {
			is_alive = yes
			is_ruler = yes

			num_of_children > 0
			any_child = {
				father = root.ruler
				is_alive = yes
				is_heir = yes
				is_female = yes
			}
		}

		#Are the nobles still relevant?
		num_estate_privileges:nobles_estate > 2
	}
	
	illustration_tags = {
		10 = angry
		10 = interior
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		character:ara_james_i_urgell = {
			save_scope_as = ruler_brother
		}
		character:ara_peter_iv_arago = {
			save_scope_as = aragon_ruler
		}
		character:ara_peter_iv_arago = {
			random_child = {
				limit = {
					is_alive = yes
					is_heir = yes
					is_female = yes
				}
				save_scope_as = aragon_daugther
			}
		}
		location:valencia = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_ara.210.a
		historical_option = yes
		custom_tooltip = flavor_ara.210.a.tt
		add_prestige = prestige_weak_penalty
		add_stability = stability_weak_penalty
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty }
		set_variable = { name = aragon_ruler_brother_fleeing_flag value = 1 }
	}

	option = {
		name = flavor_ara.210.b
		add_legitimacy = legitimacy_severe_penalty
		change_heir_selection = heir_selection:salic_law
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty }
	}
}