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.1501 塔吉尔德条约

时间范围
无明确 fromto 日期,事件由其他条件触发,无每月概率。

触发条件
事件代码中未包含 trigger 字段,表明该事件并非通过常规条件(如控制地区、特定政府类型等)触发,而是由游戏中的其他事件或机制(如 trigger_event_silently)直接调用。

关键效果

  • 选项 A(历史选项)flavor_eng_diplomacy.1501.a

    • 设置变量 treaty_approved = 1
    • 对目标国家(scope:target_root_country)添加信任修正 trust_treaty_of_tagilde
    • 卡斯蒂利亚(c:CAS)对事件触发国(root)添加观点修正 signed_tagilde_treaty
    • 对目标国家静默触发事件 flavor_eng_diplomacy.1
  • 选项 Bflavor_eng_diplomacy.1501.b

    • 设置变量 treaty_declined = 1
    • 目标国家移除对葡萄牙(c:POR)的信任修正 trust_treaty_of_tagilde
    • 卡斯蒂利亚(c:CAS)对事件触发国添加观点修正 declined_advantageous_treaty
    • 对目标国家静默触发事件 flavor_eng_diplomacy.2

背景介绍
该事件涉及葡萄牙与卡斯蒂利亚之间的一项历史条约——塔吉尔德条约。条约旨在解决两国在海外探险与殖民方面的领土与权利争端,特别是在非洲海岸的势力范围划分。事件选项反映了是否接受该条约,其决定将直接影响葡萄牙、卡斯蒂利亚以及相关目标国家之间的信任与外交关系。

完整事件代码

flavor_eng_diplomacy.1501 = {
	hide_portraits = yes
	type = country_event

	title = flavor_eng_diplomacy.1501.title
	desc = flavor_eng_diplomacy.1501.desc

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

		scope:target_root_country.ruler = { save_scope_as = target_character }

		save_scope_as = sender

	}

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

		set_variable = { name = treaty_approved value = 1 }

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

		c:CAS = { add_opinion = { target = root modifier = signed_tagilde_treaty } }

		scope:target_root_country = { trigger_event_silently = { id = flavor_eng_diplomacy.1 days = 0 } }

	}

	option = {
		name = flavor_eng_diplomacy.1501.b

		set_variable = { name = treaty_declined value = 1 }

		scope:target_root_country = {
			remove_trust = { 
				modifier = trust_treaty_of_tagilde 
				target = c:POR 
			}
		}

		c:CAS = {
			add_opinion = {
				target = root
				modifier = declined_advantageous_treaty
			}
		}

		scope:target_root_country = { trigger_event_silently = { id = flavor_eng_diplomacy.2 days = 0 } }

	}

}