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.56] 祖先祭祀

时间范围

  • 起始日期:1375年1月1日
  • 结束日期:1821年1月1日
  • 触发概率:每月 10% 概率

触发条件

  • 国家 不是 元朝中国(is_yuan_china = no
  • 国家 拥有 统治者(has_ruler = yes

关键效果

事件提供六个选项,每个选项均会调用 chi_select_recommendation 效果,并传入不同的数值参数(1至5)。最后一个选项(flavor_chi.56.f)有额外效果:

  • 选项 A (flavor_chi.56.a):chi_select_recommendation = { value = 1 }
  • 选项 B (flavor_chi.56.b):chi_select_recommendation = { value = 2 }
  • 选项 C (flavor_chi.56.c):chi_select_recommendation = { value = 3 }
  • 选项 D (flavor_chi.56.d):chi_select_recommendation = { value = 4 }
  • 选项 E (flavor_chi.56.e):chi_select_recommendation = { value = 5 }
  • 选项 F (flavor_chi.56.f):
    • 增加大量威望(add_prestige = prestige_severe_bonus
    • 移除变量 chi_ancestorremove_variable = chi_ancestor

背景介绍

此事件模拟了明清时期中国(非元朝)统治者面临的祖先祭祀或相关礼仪决策。在儒家文化影响下,对先祖的尊崇与祭祀是国家礼仪和统治合法性的重要组成部分。统治者需要根据礼制、现实政治需求或个人倾向,选择不同的祭祀规格或方式,这些选择可能对王朝的威望、内部凝聚力或特定集团(如贵族阶层)的支持产生影响。

完整事件代码

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

	illustration_tags = {
		10 = interior
		10 = regular
	}
	
	fire_only_once = yes

	dynamic_historical_event = {
		tag = CHI
		from = 1375.1.1
		to = 1821.1.1
		monthly_chance = 10
	}

	trigger = {
		is_yuan_china = no
		has_ruler = yes
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = {
			save_scope_as = target_character
		}
		set_variable = {
			name = chi_ancestor
			value = scope:target_character
		}
	}

	option = {
		name = flavor_chi.56.a

		chi_select_recommendation = { value = 1 }
	}

	option = {
		name = flavor_chi.56.b

		chi_select_recommendation = { value = 2 }
	}

	option = {
		name = flavor_chi.56.c

		chi_select_recommendation = { value = 3 }
	}

	option = {
		name = flavor_chi.56.d

		chi_select_recommendation = { value = 4 }
	}

	option = {
		name = flavor_chi.56.e

		chi_select_recommendation = { value = 5 }
	}

	option = {
		name = flavor_chi.56.f

		add_prestige = prestige_severe_bonus
		remove_variable = chi_ancestor
	}
}