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.43 针对阿希的宣战理由

时间范围

1337.1.1 - 1400.1.1,每月有 1% 的概率触发。

触发条件

  • 国家 AHI 必须存在。
  • 本国(TUR)未处于战争状态。
  • 本国宗教组与 AHI 的宗教组相同。
  • 本国与 AHI 之间不存在以下关系:
    • AHI 的盟友。
    • AHI 是本国附庸。
    • 本国是 AHI 的附庸。
  • 本国有统治者,且该统治者拥有王朝。

关键效果

  • 选项 A (flavor_tur.43.a)

    • 历史选项:是
    • 获得针对国家 AHIcasus_belli:cb_annex(吞并宣战理由)。
    • 社会价值观 belligerent_vs_conciliatory 向左移动(即向“好战”方向移动)。
  • 选项 B (flavor_tur.43.b)

    • 触发条件AHI 是AI控制的国家,且 AHI 既不是本国的宿敌,也不是本国的敌人。
    • 效果:为 AHI 设置一个持续20年的变量 more_likely_to_accept_vassalization_variable(使其更可能接受附庸提议),并通过自定义提示 ahi_vassalage_tooltip 显示。
  • 选项 C (flavor_tur.43.c)

    • 增加 estate_type:clergy_estate(神职人员阶层)的阶层满意度 estate_satisfaction_mild_bonus
    • 社会价值观 mysticism_vs_jurisprudence 向左轻微移动(即向“神秘主义”方向轻微移动)。

背景介绍

此事件模拟了奥斯曼帝国(TUR)早期针对安纳托利亚地区的阿希兄弟会(Ahi)可能采取的外交与军事策略。阿希兄弟会是一个具有宗教和行会性质的组织,在奥斯曼崛起初期是地方上一支重要的政治力量。该事件为奥斯曼统治者提供了几种处理与阿希关系的选择:直接寻求征服、通过外交手段使其臣服,或者通过安抚国内宗教阶层来巩固内部统治,这反映了早期奥斯曼国家整合安纳托利亚地区时面临的典型抉择。

完整事件代码

flavor_tur.43 = { #CB against of Ahi
	type = country_event
	title = flavor_tur.43.title
	desc = flavor_tur.43.desc

	historical_info = flavor_tur.43.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1337.1.1
		to = 1400.1.1
		monthly_chance = 1
	}

	trigger = {
		country_exists = c:AHI
		at_war = no
		religion.group = c:AHI.religion.group
		NOR = {
			is_allied_with = { target = c:AHI }
			c:AHI = { is_subject = yes }
			is_subject_of = c:AHI
		}
		has_ruler = yes
		ruler = { has_dynasty = yes }
	}

	immediate = {

		c:AHI = {
			save_scope_as = target_country
			capital.province_definition = {
				save_scope_as = ahi_capital_province_definition
			}
		}
	}

	option = {
		name = flavor_tur.43.a
		add_casus_belli =  {
			type = casus_belli:cb_annex
			target = c:AHI
		}
		historical_option = yes

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_tur.43.b
		trigger = {
			c:AHI = {
				is_ai = yes
				NOR = {
					is_rival_of = root
					is_enemy_of = root
				}
			}
		}
		custom_tooltip = {
			text = ahi_vassalage_tooltip
			c:AHI = {
				set_variable = {
					name = more_likely_to_accept_vassalization_variable
					years = 20
				}
			}
		}
	}

	option = {
		name = flavor_tur.43.c

		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
		change_societal_value = { type =mysticism_vs_jurisprudence value = societal_value_tiny_move_to_left }

	}
}