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.62] 宦官对皇储的影响

时间范围

  • 起始日期:无特定起始日期(from 未指定)
  • 结束日期:无特定结束日期(to 未指定)
  • 触发概率:无特定概率(monthly_chance 未指定)

触发条件

事件将在以下条件全部满足时触发:

  • 国家拥有宦官(has_eunuchs = yes
  • 摄政王(regent)的总能力值(total_abilities)小于或等于 150
  • 继承人(heir)的年龄(age_in_years)大于 8 岁

关键效果

选项: flavor_chi.62.a

  • 对继承人(target_character)添加特质:raised_by_eunuchs(由宦官抚养)

背景介绍

在拥有宦官制度的宫廷中,当摄政王能力平庸且皇储年幼时,宦官群体可能对皇储的成长和教育产生显著影响。此事件反映了宦官在特定政治环境下介入皇室继承人培养的历史现象。

完整事件代码

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

	illustration_tags = {
		10 = interior
		10 = angry
	}

	trigger = {
		has_eunuchs = yes
		regent ?= {
			total_abilities <= 150
		}
		heir ?= {
			age_in_years > 8
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		regent = {
			save_scope_as = target_regent
		}
		heir = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_chi.62.a

		scope:target_character = {
			add_trait = trait:raised_by_eunuchs
		}
	}
}