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.79 宦官教育

时间范围

1420.1.1 - 1821.1.1,每月有 5% 的概率触发。

触发条件

  • 国家拥有宦官(has_eunuchs = yes)。
  • 首都(capital没有至少一级的“儒家学校”建筑(confucian_school)。

关键效果

选项 A:flavor_chi.79.a

  • 花费金钱(change_gold_effect = { scale = -3 })。
  • 为国家添加名为 chi_educated_eunuchs 的修正,持续时间为永久(years = -1)。
  • 获得少量研究进度(add_research_progress = research_progress_mild_bonus)。
  • 在首都建造一级“儒家学校”建筑(confucian_school)。

选项 B:flavor_chi.79.b

  • 使社会价值观中的“中央集权 vs 地方分权”(centralization_vs_decentralization)略微向左移动(即偏向地方分权)(societal_value_minor_move_to_left)。

背景介绍

在明朝及部分历史时期,宦官(太监)是宫廷政治中的重要角色。他们不仅负责宫廷事务,有时也会接受教育并参与国家管理。此事件反映了朝廷对于是否应投入资源系统性地教育宦官,使其更好地服务于儒家官僚体系,还是维持现状、避免宦官势力过度膨胀的抉择。这一决策可能影响国家的行政效率、文化发展以及中央与地方权力的平衡。

完整事件代码

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1420.1.1
		to = 1821.1.1
		monthly_chance = 5
	}

	trigger = {
		has_eunuchs = yes
		capital ?= {
			NOT = { has_building_with_at_least_one_level = confucian_school }
		}
	}
	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		capital = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_chi.79.a

		change_gold_effect = { scale = -3 }
		add_country_modifier = {
			mode = add_and_extend
			modifier = chi_educated_eunuchs
			years = -1
		}
		add_research_progress = research_progress_mild_bonus
		scope:target_location = {
			change_building_level_in_location = {
				building = building_type:confucian_school
				value = 1
			}
		}
	}

	option = {
		name = flavor_chi.79.b

		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_minor_move_to_left
		}
	}
}