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.205] 加齐领袖的崛起

时间范围:1437.1.1 - 1530.1.1(每月 2% 概率触发)

触发条件

  • 国家拥有阶层特权:estate_privilege:ghazi_privilege(加齐特权)。
  • 当前统治者(若存在)的军事能力(mil)大于等于 80。

关键效果

  • 选项 A (flavor_tur.205.a):

    • 对统治者或摄政王(若存在):
      • 若其已拥有“将军”特质类别(has_trait_category = general),则增加 15 点军事能力(add_mil = 15)。
      • 否则,为其随机添加一个“将军”类别下的特质(add_random_trait_from_category = general)。
    • 社会价值观调整:
      • outward_vs_inward(外向 vs 内向):小幅向左移动(societal_value_minor_move_to_left)。
      • quality_vs_quantity(质量 vs 数量):小幅向右移动(societal_value_minor_move_to_right)。
  • 选项 B (flavor_tur.205.b):

    • 社会价值观调整:
      • belligerent_vs_conciliatory(好战 vs 和解):小幅向右移动(societal_value_minor_move_to_right)。
      • outward_vs_inward(外向 vs 内向):小幅向右移动(societal_value_minor_move_to_right)。

背景介绍: 在奥斯曼帝国早期扩张时期,加齐(Ghazi,意为“信仰战士”)阶层扮演了关键角色。他们不仅是边疆的军事先锋,也深刻影响着帝国的意识形态与统治风格。此事件模拟了当一位极具军事才干的统治者与加齐特权阶层结合时,可能引发的国家道路抉择:是进一步强化军事领袖的个人威望与国家的扩张导向,还是调整内外策略的平衡。

完整事件代码

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

	dynamic_historical_event = {
		tag = TUR
		from = 1437.1.1
		to = 1530.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		has_estate_privilege = estate_privilege:ghazi_privilege
		ruler ?= {
			mil >= 80
		}
	}

	immediate = {
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_tur.205.a

		ruler_or_regent ?= {
			if = {
				limit = {
					has_trait_category = general
				}
				add_mil = 15
			}
			else = {
				add_random_trait_from_category = general
			}
		}

		change_societal_value = {
			type = outward_vs_inward
			value = societal_value_minor_move_to_left
		}

		change_societal_value = {
			type = quality_vs_quantity
			value = societal_value_minor_move_to_right
		}
	}

	option = {
		name = flavor_tur.205.b

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_minor_move_to_right
		}

		change_societal_value = {
			type = outward_vs_inward
			value = societal_value_minor_move_to_right
		}
	}
}