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.1 奥斯曼与波斯的关系

时间范围:1600.1.1 - 1700.1.1(每月 5% 概率)

触发条件

  • 存在任意一个邻国是波斯势力(is_persian_power = yes)。
  • 本国宗教为逊尼派(religion = religion:sunni)。

关键效果

  • 选项 A (历史选项):对人口最多的波斯邻国(scope:persia)设置变量 full_reconciliation = 1,并静默触发事件 flavor_tur.2
  • 选项 B:对人口最多的波斯邻国(scope:persia)设置变量 moderate_treaty = 1,并静默触发事件 flavor_tur.2
  • 选项 C:为本国增加少量威望(add_prestige = prestige_weak_bonus)。

背景介绍: 此事件模拟了17世纪奥斯曼帝国与东方波斯邻国(如萨法维帝国)之间的复杂关系。作为逊尼派领袖的奥斯曼,与什叶派主导的波斯势力长期存在地缘政治、宗教和领土争端。事件为奥斯曼统治者提供了几种处理这一关键外交关系的选择,从全面和解到适度条约,乃至展现强硬姿态以提升威望。

完整事件代码

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

	historical_info = flavor_tur.1.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1600.1.1
		to = 1700.1.1
		monthly_chance = 5
	}

	trigger = {
		any_neighbor_country = {
			is_persian_power = yes
		}

		religion = religion:sunni
	}

	immediate = {
		ordered_neighbor_country = {
			limit = {
				is_persian_power = yes
			}
			order_by = total_population
			max = 1

			save_scope_as = persia
		}
	}

	option = {
		name = flavor_tur.1.a
		historical_option = yes
		scope:persia = {
			custom_tooltip = full_reconciliation_persia
			set_variable = { name = full_reconciliation value = 1 }
			trigger_event_silently = { id = flavor_tur.2 }
		}
	}
	option = {
		name = flavor_tur.1.b
		scope:persia = {
			custom_tooltip = moderate_treaty_persia
			set_variable = { name = moderate_treaty value = 1 }
			trigger_event_silently = { id = flavor_tur.2 }
		}
	}
	option = {
		name = flavor_tur.1.c
		add_prestige = prestige_weak_bonus
	}
}