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.1201] 奥斯曼帝国与英格兰的外交关系

时间范围

  • 起始日期:未指定(代码中无 from 字段)
  • 结束日期:未指定(代码中无 to 字段)
  • 触发概率:未指定(代码中无 monthly_chance 字段)

触发条件

  • 触发条件:未在提供的代码片段中指定(代码中无 trigger 字段)。该事件的具体触发条件需参考游戏文件的其他部分。

关键效果

事件提供三个外交选项,每个选项对应不同的外交策略和国内影响:

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

    • 性质:历史选项 (historical_option = yes)
    • 效果
      • 与目标国家 scope:target_country2 互相获得关系修正 tur_better_relations_with_england
  2. 选项 B (flavor_tur.1201.b)

    • 效果
      • 与目标国家 scope:target_country2 建立同盟关系 (relation_type:alliance)。
  3. 选项 C (flavor_tur.1201.c)

    • 效果
      • 与目标国家 scope:target_country2 互相获得关系修正 tur_disregarded_diplomatic_ties
      • 国内教士阶层 (estate_type:clergy_estate) 满意度获得小幅提升 (estate_satisfaction_mild_bonus)。

背景介绍

此事件模拟了奥斯曼帝国在处理与英格兰(或其他指定目标国)外交关系时可能面临的抉择。选项反映了不同的外交姿态:改善关系、结成正式军事同盟,或是为了安抚国内强大的教士阶层而选择忽视外交联系。这体现了奥斯曼帝国在平衡外部联盟与内部稳定时所面临的典型挑战。

完整事件代码

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

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

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

	option = {
		name = flavor_tur.1201.b

		create_relation = {
			first = this
			second = scope:target_country2
			type = relation_type:alliance
		}
	}

	option = {
		name = flavor_tur.1201.c

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

		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
	}
}