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_tur.1301] 奥斯曼拒绝保护请求

时间范围
事件未指定 fromto 日期,也未指定 monthly_chance,表明这是一个由特定条件触发的一次性事件。

触发条件
事件代码中未直接包含 trigger 字段,其触发逻辑需参考游戏内其他相关脚本或条件。

关键效果
事件提供两个选项:

  • 选项 A (flavor_tur.1301.a) - 历史选项
    拒绝对方的保护请求。
    效果:与目标国家 scope:target_country2 互相添加负面外交观点修正 tur_rejected_protection
  • 选项 B (flavor_tur.1301.b)
    接受对方的请求,使其成为附庸。
    效果:使目标国家 scope:target_country2 成为本国的附庸国 (subject_type:vassal)。

背景介绍
此事件模拟了奥斯曼帝国(或其他相关国家)面临一个较弱国家寻求保护或附庸请求时的外交决策。历史上,奥斯曼帝国在其扩张过程中,周边许多小国或公国常会寻求其庇护以避免被更强大的敌人吞并,而奥斯曼帝国则需权衡接受附庸带来的责任与拒绝请求可能引发的外交紧张。

完整事件代码

flavor_tur.1301 = {
	type = country_event
	title = flavor_tur.1301.title
	desc = flavor_tur.1301.desc

	option = {
		name = flavor_tur.1301.a
		historical_option = yes

		add_opinion_mutual_effect = {
			modifier = tur_rejected_protection
			target = scope:target_country2
		}
	}

	option = {
		name = flavor_tur.1301.b

		make_subject_of = {
			target = scope:target_country2
			type = subject_type:vassal
		}
	}
}