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_diplomacy.1200 温莎条约

时间范围:1386.1.1 - 1500.1.1(每月 5% 概率)

触发条件

  • 葡萄牙(POR) 满足以下任一条件:
    • 男性统治者年龄大于30岁,且没有存活的男性子嗣。
    • 政府力量低于50。
  • 英格兰(ENG)或大不列颠(GBR) 存在、是独立国家且未与葡萄牙交战。
  • 卡斯蒂利亚(CAS) 存在、是独立国家、与葡萄牙接壤且未与葡萄牙结盟。
  • 葡萄牙对 英格兰或大不列颠看法值 ≥ 100,并且拥有名为 trust_treaty_of_tagilde 的信任关系。

关键效果

  • 选项 A(历史选项)
    • 与目标国家(英格兰或大不列颠)建立名为 trust_treaty_of_windsor 的信任关系。
    • 触发事件 flavor_eng_diplomacy.1201
  • 选项 B
    • 获得少量威望。

背景介绍: 1386年,葡萄牙王国与英格兰王国签署了《温莎条约》。该条约是欧洲历史上最古老的仍在生效的同盟条约之一,旨在巩固两国关系,共同对抗伊比利亚半岛上的卡斯蒂利亚王国。此事件反映了葡萄牙在面临继承危机或内部不稳时,寻求外部强援以保障自身安全与王朝稳定的外交策略。

完整事件代码

flavor_eng_diplomacy.1200 = {
	hide_portraits = yes
	type = country_event

	title = flavor_eng_diplomacy.1200.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					ruler = { 
						is_female = no 
						age_in_years > 30
						any_child = {
							is_female = no
							is_alive = yes
							count < 1
						}
					}
				}
				desc = flavor_eng_diplomacy.1200.desc_no_male_heir
			}
			triggered_desc = {
				trigger = { always = yes }
				desc = flavor_eng_diplomacy.1200.desc
			}
		}
	}

	fire_only_once = yes
	dynamic_historical_event = {
		tag = POR
		from = 1386.1.1
		to = 1500.1.1
		monthly_chance = 5
	}
	
	trigger = {

		OR = {
			ruler ?= { 
				is_female = no 
				age_in_years > 30
				any_child = {
					is_female = no
					is_alive = yes
					count < 1
				}
			}
			government_power < 50
		}

		OR = {
			AND = {
				country_exists = c:ENG
				c:ENG = {
					is_subject = no
					NOT = { is_at_war_with = root }
				}
			}
			AND = {
				country_exists = c:GBR
				c:GBR = {
					is_subject = no
					NOT = { is_at_war_with = root }
				}
			}
		}

		country_exists = c:CAS
		c:CAS = {
			is_subject = no
			is_neighbor_of = root
			NOT = { is_allied_with = { target = root } }
		}
		
		OR = {
			trigger_if = {
				limit = { country_exists = c:ENG }
				opinion = {
					target = c:ENG
					value >= 100 
				}
				has_trust = { modifier = trust_treaty_of_tagilde target = c:ENG }
			}
			trigger_if = {
				limit = { country_exists = c:GBR }
				opinion = {
					target = c:GBR
					value >= 100 
				}
				has_trust = { modifier = trust_treaty_of_tagilde target = c:GBR }
			}
		}

	}

	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		capital = { save_scope_as = target_location }

		ruler = { save_scope_as = target_character }

		if = {
			limit = {
				country_exists = c:ENG
			}
			c:ENG = { save_scope_as = target_root_country }
		}
		else = {
			c:GBR = { save_scope_as = target_root_country }
		}

	}

	option = {
		historical_option = yes
		name = flavor_eng_diplomacy.1200.a

		add_trust = {
			modifier = trust_treaty_of_windsor
			target = scope:target_root_country
		}

		scope:target_root_country = { trigger_event_silently = { id = flavor_eng_diplomacy.1201 days = 0 } }
		
		
		custom_tooltip = flavor_eng_diplomacy.1200.tt

	}

	option = {
		name = flavor_eng_diplomacy.1200.b

		add_prestige = prestige_mild_bonus

	}
	
	historical_info = flavor_eng_diplomacy.1201.historical_info

}