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_ira.1402] 访问首都

时间范围
事件为动态历史事件,无固定 fromto 日期。触发概率由游戏动态机制决定,代码中未指定 monthly_chance

触发条件

  • 事件为“重大事件”(major = yes)。
  • 主要触发条件(major_trigger):当前国家(this)必须与目标国家(scope:target_country)相同。

关键效果

  • 选项 A(名称:flavor_ira.1402.a):
    • 与目标国家(scope:target_country)互相添加观点修正 ira_visited_capital

背景介绍
此事件模拟了一位外国重要人物或使团访问本国首都的情景。通过正式访问,双方可以增进外交关系,巩固或建立政治互信,这在近代早期外交中是一种常见且重要的互动形式。事件通过互相添加积极的观点修正,反映了访问对两国关系的直接促进作用。

完整事件代码

flavor_ira.1402 = {
	type = country_event
	title = flavor_ira.1402.title
	desc = flavor_ira.1402.desc
	major = yes

	major_trigger = {
		this = scope:target_country
	}
	
	illustration_tags = {
        10 = happy
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}
	
	option = {
		name = flavor_ira.1402.a

		add_opinion_mutual_effect = {
			modifier = ira_visited_capital
			target = scope:target_country
		}
	}
}