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.1200 奥斯曼与海上强国的外交博弈

时间范围

1600.1.1 - 1700.1.1,每月有 3% 的概率触发。

触发条件

事件触发需满足以下条件之一:

  1. 主要条件(若大不列颠存在):

    • 国家 GBR 存在。
    • GBR 是独立国家(非附庸)。
    • GBR 是列强。
    • GBR 至少有一个与事件触发国(root,即奥斯曼)互为宿敌的对手。
    • 事件触发国的宗教组与 GBR 的宗教组不同。
  2. 替代条件(若大不列颠不存在或不满足条件):

    • 国家 ENG 存在。
    • ENG 是独立国家(非附庸)。
    • ENG 是列强。
    • ENG 至少有一个与事件触发国(root,即奥斯曼)互为宿敌的对手。
    • 事件触发国的宗教组与 ENG 的宗教组不同。

关键效果

事件提供两个选项:

  • 选项 A (flavor_tur.1200.a)

    • 对满足条件的海上强国(GBRENG)触发事件 flavor_tur.1201
  • 选项 B (flavor_tur.1200.b)

    • 为事件触发国增加 神职人员阶层满意度estate_satisfaction_mild_bonus)。

背景介绍

在17世纪,奥斯曼帝国与新兴的欧洲海上强国(如英格兰/大不列颠)在地中海和全球贸易路线上既有竞争,也存在合作的可能。面对这些与自己宗教、文化背景迥异且实力强劲的对手,奥斯曼宫廷需要审慎决策:是尝试与这些海上强国的对手结盟以制衡其力量,还是优先安抚国内强大的神职人员阶层,以维持帝国的内部稳定。

完整事件代码

flavor_tur.1200 = {
	hide_portraits = yes
	type = country_event
	title = flavor_tur.1200.title
	desc = flavor_tur.1200.desc

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

	trigger = {
		trigger_if = {
			limit = {
				country_exists = c:GBR
			}
			c:GBR = {
				is_subject = no
				is_great_power = yes
				any_rival ?= {
					is_rival_of = root
				}
			}
			religion.group != c:GBR.religion.group
		}
		trigger_else = {
			country_exists = c:ENG
			c:ENG = {
				is_subject = no
				is_great_power = yes
				any_rival ?= {
					is_rival_of = root
				}
			}
			religion.group != c:ENG.religion.group
		}
	}

	immediate = {
		if = {
			limit = {
				country_exists = c:GBR
				c:GBR = {
					is_subject = no
					is_great_power = yes
					any_rival ?= {
						is_rival_of = root
					}
				}
			}
			c:GBR = {
				save_scope_as = target_country
			}
		}
		else = {
			c:ENG = {
				save_scope_as = target_country
			}
		}

		random_rival = {
			limit = {
				is_rival_of = scope:target_country
			}
			save_scope_as = target_rival
		}

		scope:target_country = {
			ruler_or_regent ?= {
				save_scope_as = target_character
			}
		}

		save_scope_as = target_country2

		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_tur.1200.a

		scope:target_country = {
			trigger_event_non_silently = flavor_tur.1201
		}
	}

	option = {
		name = flavor_tur.1200.b

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