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_dlh.36] 大维齐尔事件

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

触发条件

  • 内阁中至少有一位角色拥有变量 dlh_grand_vizier

关键效果

  • 选项 A (flavor_dlh.36.a) - 历史选项

    • 获得 stability_extreme_bonus 的稳定度加成。
    • 贵族阶层满意度降低 estate_satisfaction_mild_penalty
  • 选项 B (flavor_dlh.36.b)

    • 农民阶层满意度降低 estate_satisfaction_mild_penalty

背景介绍: 该事件模拟了14世纪中后期,拥有“大维齐尔”头衔的权臣在国家政治中扮演关键角色的历史情境。大维齐尔作为苏丹的首席大臣,其权力和影响力巨大,其政策选择往往会在贵族与农民等不同社会阶层间引发不同的反响,进而影响国家的稳定。

完整事件代码

flavor_dlh.36 = {
	type = country_event
	title = flavor_dlh.36.title
	desc = flavor_dlh.36.desc
	historical_info = flavor_dlh.36.historical_info

	illustration_tags = {
		10 = exterior
		10 = angry
	}

	dynamic_historical_event = {
		tag = DLH
		from = 1350.1.1
		to = 1400.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		any_cabinet_character ?= {
			has_variable = dlh_grand_vizier
		}	
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		random_cabinet_character ?= {
			limit = {
				has_variable = dlh_grand_vizier
			}
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_dlh.36.a
		historical_option = yes
		
		add_stability = stability_extreme_bonus
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_penalty
		}
	}

	option = {
		name = flavor_dlh.36.b
		
		add_estate_satisfaction = {
			type = estate_type:peasants_estate
			value = estate_satisfaction_mild_penalty
		}
	}
}