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.1101] 奥斯曼附庸提议

时间范围

  • 起始日期:未指定(事件无 fromto 字段,通常由其他事件或条件触发)
  • 触发概率:未指定(事件无 monthly_chance 字段,非定期触发)

触发条件

  • 主要触发条件:事件通过 major_trigger 指定,当 this(当前国家)等于 scope:target_country2(目标国家2)时,该事件被视作“重大事件”。具体触发逻辑需结合调用此事件的上文代码确定。

关键效果

事件提供三个选项:

  1. 选项 A (flavor_tur.1101.a)

    • 使当前国家成为 scope:target_country2 的附庸国。
    • 附庸关系类型:vassal(附庸)。
  2. 选项 B (flavor_tur.1101.b)

    • scope:target_country2 互相添加一个名为 tur_rejected_vassalization 的意见修正(具体效果取决于该修正的定义)。
  3. 选项 C (flavor_tur.1101.c)

    • scope:target_country2 非静默地触发事件 flavor_tur.1102

背景介绍

此事件模拟了奥斯曼帝国(或相关国家)向其邻国或特定目标提出附庸要求的外交情景。在历史上,奥斯曼帝国常通过军事威慑、外交压力或利益交换,迫使周边较小的国家或公国接受其宗主权,成为其附庸,以扩展势力范围并确保边境稳定。拒绝这一要求可能导致关系恶化,甚至引发后续的军事冲突或惩罚性事件。

完整事件代码

flavor_tur.1101 = {
	type = country_event
	title = flavor_tur.1101.title
	desc = flavor_tur.1101.desc
	major = yes
	major_trigger = {
		this = scope:target_country2
	}

	option = {
		name = flavor_tur.1101.a

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

	option = {
		name = flavor_tur.1101.b

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

	option = {
		name = flavor_tur.1101.c

		scope:target_country2 = {
			trigger_event_non_silently = flavor_tur.1102
		}
	}
}