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_sco.1202 英格兰王室联姻提议

时间范围

1490.1.1 - 1550.1.1 (每月 5% 概率)

触发条件

  • 本国拥有统治者。
  • 本国存在任意一位符合以下条件的角色:
    • 是英格兰统治者(c:ENG.ruler)的姐妹。
    • 是女性。
    • 未婚。
  • 本国对苏格兰(c:SCO)拥有“永久和平条约”信任修正(trust_treaty_of_perpetual_peace)。
  • 苏格兰(c:SCO)存在。
  • 苏格兰拥有统治者。
  • 苏格兰统治者符合以下条件:
    • 是男性。
    • 未婚。
  • 苏格兰未与本国处于战争状态。
  • 苏格兰未处于内战状态(in_civil_war = no)。

关键效果

选项 A (flavor_sco.1202.a)

  • 向苏格兰(c:SCO)静默触发事件 flavor_sco.1203(立即生效)。
  • 显示自定义提示 flavor_sco.1202.tt1
  • 显示自定义提示 flavor_sco.1202.tt2

选项 B (flavor_sco.1202.b)

  • 移除本国对苏格兰(c:SCO)的“永久和平条约”信任修正(trust_treaty_of_perpetual_peace)。
  • 设置变量 wedding_cancelled = 1
  • 向苏格兰(c:SCO)静默触发事件 flavor_sco.1203(立即生效)。
  • 显示自定义提示 flavor_sco.1202.tt3

背景介绍

此事件模拟了1490年至1550年间,英格兰都铎王朝试图通过与苏格兰斯图亚特王朝联姻来巩固《永久和平条约》的外交举措。历史上,英格兰常利用王室女性的婚姻作为重要的外交工具,以稳定与北方邻国的关系,或谋求对苏格兰的影响力。事件中,英格兰需要选择是否提议将一位未婚的公主嫁给苏格兰的未婚国王,这一决定将直接影响两国间的信任与和平状态。

完整事件代码

flavor_sco.1202 = {
	type = country_event

	fire_only_once = yes

	title = flavor_sco.1202.title
	desc = flavor_sco.1202.desc

	dynamic_historical_event = {
		tag = ENG
		from = 1490.1.1
		to = 1550.1.1
		monthly_chance = 5
	}

	trigger = {
		has_ruler = yes
		any_character = {
			is_sibling_of = c:ENG.ruler
			is_female = yes
			is_married = no
		}

		has_trust = { modifier = trust_treaty_of_perpetual_peace target = c:SCO }

		country_exists = c:SCO
		c:SCO = {
			has_ruler = yes
			ruler = {
				is_female = no
				is_married = no
			}
			NOT = { is_at_war_with = root }
			in_civil_war = no
		}

	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		random_character = {
			limit = {
				is_sibling_of = c:ENG.ruler
				is_female = yes
				is_married = no
			}
			save_scope_as = suitable_sister
		}

	}

	option = {
		name = flavor_sco.1202.a

		c:SCO = { trigger_event_silently = { id = flavor_sco.1203 days = 0 } }

		custom_tooltip = flavor_sco.1202.tt1
		custom_tooltip = flavor_sco.1202.tt2

	}

	option = {
		name = flavor_sco.1202.b

		remove_trust = {
			modifier = trust_treaty_of_perpetual_peace
			target = c:SCO
		}

		set_variable = { name = wedding_cancelled value = 1 }

		c:SCO = { trigger_event_silently = { id = flavor_sco.1203 days = 0 } }

		custom_tooltip = flavor_sco.1202.tt3

	}

	historical_info = flavor_sco.1202.historical_info

}