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_eng.48] 英格兰王室联姻

时间范围
1300.1.1 - 1400.1.1(每月 20% 概率)

触发条件

  • 事件国家(英格兰/大不列颠):
    • 拥有君主。
    • 存在至少一位成年、未婚、男性、拥有王朝的王室地产持有者,且其王朝与当前君主王朝相同。
    • 约克王朝的王朝领袖必须为事件国家的成年、未婚、男性君主。
  • 目标国家(卡斯蒂利亚):
    • 拥有君主,且君主拥有王朝。
    • 未与事件国家处于战争状态。
    • 与事件国家存在以下关系:同盟、附庸关系、联合统治、停战协定。
    • 存在至少一位成年、未婚、女性、非君主/继承人/摄政的王朝成员(与卡斯蒂利亚君主同王朝),且年龄小于30岁。

关键效果

  • 历史选项flavor_eng.48.a
    • 使事件指定的男性贵族(target_head)与卡斯蒂利亚的伊莎贝拉(isabella)结婚。
    • 将伊莎贝拉移至事件国家。
    • 事件国家获得对卡斯蒂利亚的宣称王位宣战理由,目标为卡斯蒂利亚,宣称者为该男性贵族。

背景介绍
该事件模拟了14世纪英格兰(或其后继者大不列颠)与卡斯蒂利亚之间通过王室联姻建立政治联盟的可能性。此类联姻是中世纪欧洲常见的外交手段,旨在巩固王朝利益、获取领土宣称或构建对抗共同敌人的联盟。事件特别聚焦于为英格兰王室(尤其是约克王朝)或一位合适的王室贵族成员,安排与卡斯蒂利亚王室一位年轻未婚女性的婚姻,从而为英格兰对卡斯蒂利亚王位提出潜在宣称奠定基础。

完整事件代码

flavor_eng.48 = {
	hide_portraits = yes
	type = country_event

	fire_only_once = yes
	historical_info = flavor_eng.48.historical_info
	title = flavor_eng.48.title
	desc = flavor_eng.48.desc

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1300.1.1
		to = 1400.1.1
		monthly_chance = 20
	}

	major = yes
	major_trigger = {
		this = c:CAS
	}

	trigger = {
		has_ruler = yes
		any_character = {
			has_estate = estate_type:crown_estate
			has_dynasty = yes
			dynasty = root.ruler.dynasty
			is_married = no
			is_female = no
			is_adult = yes
		}
		c:CAS ?= {
			has_ruler = yes
			ruler ?= { has_dynasty = yes }
			at_war = no
			NOR = {
				has_mutual_scripted_relation = {
					type = relation_type:alliance
					target = root
				}
				is_subject_of = root
				root = { is_subject_of = prev }
				in_union_with = root
				has_truce_with = root
			}
			any_character = {
				is_adult = yes
				is_female = yes
				is_ruler = no
				is_heir = no
				is_regent = no
				is_married = no
				dynasty ?= c:CAS.ruler.dynasty
				age_in_years < 30
			}
		}
		dynasty:york_dynasty ?= {
			dynasty_head ?= {
				owner = root
				is_adult = yes
				is_female = no
				is_married = no
			}
		}
	}

	illustration_tags = {
        10 = happy
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		c:CAS ?= {
			save_scope_as = target_country
			random_character = {
				limit = {
					is_adult = yes
					is_female = yes
					is_ruler = no
					is_heir = no
					is_regent = no
					is_married = no
					dynasty ?= c:CAS.ruler.dynasty
					age_in_years < 30
				}
				save_scope_as = isabella
				add_fertility = 100
			}
		}

		if = {
			limit = {
				ruler = {
					is_married = no
					dynasty = dynasty:york_dynasty
				}
			}
			ruler ?= {
				save_scope_as = target_head
				add_fertility = 100

				dynasty = { save_scope_as = target_dynasty }
			}
		}
		else = {
			random_character = {
				limit = {
					has_estate = estate_type:crown_estate
					has_dynasty = yes
					dynasty = root.ruler.dynasty
					is_married = no
					is_female = no
					is_adult = yes
				}
				add_fertility = 100
				save_scope_as = target_head
				dynasty = { save_scope_as = target_dynasty }
			}
		}
	}

	option = {
		name = flavor_eng.48.a
		scope:target_head ?= {
			marry_character = scope:isabella
		}
		scope:isabella = { move_country = root }

		add_casus_belli = {
			type = casus_belli:cb_claim_throne
			target = scope:target_country
			character = scope:target_head
		}
	}
}