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.84] 刘瑾与八虎

时间范围

1475.1.1 - 1525.1.1,每月 25% 概率触发。

触发条件

  • 国家拥有宦官 (has_eunuchs = yes)。
  • 国家拥有统治者 (has_ruler = yes)。
  • 国家拥有 eunuch_power 修正,且其值 大于等于 2.5 (modifier:eunuch_power >= 2.5)。

关键效果

选项 A (历史选项)

  • 为国家添加并延长修正 chi_clamped_down_on_eight_tigers,持续 20 年。
  • 将事件创建的人物 刘瑾 监禁 (imprison_character_effect),监禁时间为永久 (years = -1)。

选项 B

  • 国家 稳定度 轻微下降 (add_stability = stability_mild_penalty)。
  • 事件创建的人物 刘瑾 的行政 (add_adm)、外交 (add_dip)、军事 (add_mil) 能力各 +10

背景介绍

此事件模拟了明朝中期宦官势力膨胀的典型历史情境。当宦官权力(通过eunuch_power修正体现)达到一定程度时,以刘瑾为代表的“八虎”等权阉集团可能崛起,对朝政产生巨大影响。事件迫使统治者做出抉择:是严厉打压宦官势力以巩固皇权(历史选项),还是容忍甚至利用其能力,但需承担朝纲不稳的风险。

完整事件代码

flavor_chi.84 = {
	type = country_event
	title = flavor_chi.84.title
	desc = flavor_chi.84.desc
	historical_info = flavor_chi.84.historical_info

	trigger = {
		has_eunuchs = yes
		has_ruler = yes
		modifier:eunuch_power >= 2.5
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1475.1.1
		to = 1525.1.1
		monthly_chance = 25
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = {
			save_scope_as = ruler_scope
		}
		create_character = {
			estate = estate_type:burghers_estate
			first_name = name_jin3
			last_name = name_liu2
			birth_location = location:xianyang
			birth_date = 1451.1.1
			adm = { 70 90 }
			dip = { 50 60 }
			mil = { 50 60 }
			add_trait = trait:eunuch
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_chi.84.a

		historical_option = yes

		add_country_modifier = {
			mode = add_and_extend
			modifier = chi_clamped_down_on_eight_tigers
			years = 20
		}
		scope:target_character = {
			imprison_character_effect = {
				years = -1
			}
		}
	}

	option = {
		name = flavor_chi.84.b

		add_stability = stability_mild_penalty
		scope:target_character = {
			add_adm = 10
			add_dip = 10
			add_mil = 10
		}
	}
}