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_chi.61] 宦官专权

时间范围
无特定起止日期(无 fromto 字段),事件在满足触发条件后,每月有基础概率触发(具体概率由游戏全局 monthly_chance 设定,代码中未明确数值)。

触发条件

  • 国家已启用宦官阶层(has_eunuchs = yes
  • 国家当前未拥有名为 chi_eunuchs 的国家修正

关键效果

  • 选项flavor_chi.61.a(无 historical_option 标记)
    • 为国家添加国家修正 chi_eunuchs,持续 30 年

背景介绍
此事件模拟了历史上宦官在宫廷政治中逐渐掌握权力、干预朝政的现象。当宦官阶层被启用且国家尚未受到其专权影响时,事件可能触发,标志着宦官开始在国家治理中扮演更显著、更制度化的角色,通常伴随长期的行政或政治影响。

完整事件代码

flavor_chi.61 = {
	type = country_event
	title = flavor_chi.61.title
	desc = flavor_chi.61.desc

	illustration_tags = {
		10 = interior
		10 = angry
	}

	trigger = {
		has_eunuchs = yes
		NOT = { has_country_modifier = chi_eunuchs }
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	option = {
		name = flavor_chi.61.a

		add_country_modifier = {
			mode = add
			modifier = chi_eunuchs
			years = 30
		}
	}
}