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.75 废除中书省

时间范围:1360.1.1 - 1450.1.1 (每月 10% 概率)

触发条件

  • 国家不是元朝中国 (is_yuan_china = no)
  • 内阁 (cabinet) 中至少有一位人物 (any_cabinet_character)
  • 国家拥有统治者 (has_ruler = yes)
  • 国家已采用“三省制”政府改革 (has_reform = government_reform:three_departments_system)

关键效果

  • 选项 A (flavor_chi.75.a)

    • 处决一名随机内阁人物 (kill_character)
    • 增加少量正统性 (add_legitimacy = legitimacy_mild_bonus)
    • 添加政策:直接奏事 (add_policy = policy:chi_direct_report)
  • 选项 B (flavor_chi.75.b)

    • 处决一名随机内阁人物 (kill_character)
    • 增加少量研究进度 (add_research_progress = research_progress_mild_bonus)
    • 添加政策:内阁大学士 (add_policy = policy:chi_grand_secretariat)
  • 选项 C (flavor_chi.75.c)

    • 添加政策:丞相制 (add_policy = policy:chi_grand_chancellorship)
    • 社会价值观小幅向“传统”方向移动 (change_societal_value)

背景介绍: 明朝建立后,沿用了元朝的部分中央官制,包括中书省。然而,中书省权力过大,丞相与皇权之间的矛盾日益凸显。明太祖朱元璋为加强皇权、防止权臣出现,最终决定废除中书省,由皇帝直接统领六部。这一事件标志着中国历史上丞相制度的终结和君主集权的进一步强化,对明朝及后世的政治体制产生了深远影响。

完整事件代码

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1360.1.1
		to = 1450.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	trigger = {
		is_yuan_china = no
		any_cabinet_character = {
			count >= 1
		}
		has_ruler = yes
		has_reform = government_reform:three_departments_system
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		random_cabinet_character = {
			save_scope_as = target_character
		}

		ruler = {
			save_scope_as = ruler_scope
		}

		unlock_law_effect = {
			type = six_ministries_overseer_law
		}
	}

	option = {
		name = flavor_chi.75.a

		kill_character = {
			target = scope:target_character
			reason = execution
		}
		add_legitimacy = legitimacy_mild_bonus
		add_policy = policy:chi_direct_report
	}

	option = {
		name = flavor_chi.75.b

		kill_character = {
			target = scope:target_character
			reason = execution
		}
		add_research_progress = research_progress_mild_bonus
		add_policy = policy:chi_grand_secretariat
	}

	option = {
		name = flavor_chi.75.c

		add_policy = policy:chi_grand_chancellorship
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_minor_move_to_left
		}
	}
}