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.14] 朝廷重臣皈依天主教

时间范围
事件为动态历史事件,无固定 fromto 日期,触发后立即发生。

触发条件

  • 国家标签为 CHI(中国)。
  • 已拥有变量 mng_accepted_jesuits
  • 国内天主教人口比例大于 0%。
  • 国家宗教不是天主教。
  • 内阁中存在至少一名非天主教信仰的成员。

关键效果

  • 选项 A (flavor_chi.14.a)

    • 将皈依天主教的阁臣(target_character)逐出内阁。
    • 为该人物添加持续 5 年的 banned_from_cabinet 修正(禁止进入内阁)。
    • 若国家拥有 allow_righteousness 修正,则增加少量“正气”惩罚(righteousness_weak_penalty)。
  • 选项 B (flavor_chi.14.b)

    • 国家稳定性小幅下降(stability_mild_penalty)。
    • 若国家拥有 allow_harmony 修正,则“和谐度”小幅向均衡值调整(harmony_mild_towards_equilibrium)。

背景介绍
随着耶稣会传教士在中国活动的深入,天主教思想逐渐在部分士大夫与朝廷官员中传播。当一位深受儒家传统影响的内阁重臣公开皈依天主教时,在朝廷内部引发了关于信仰、忠诚与文化认同的激烈争议。皇帝必须决定如何应对这一可能动摇统治根基与意识形态统一的事件。

完整事件代码

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

	trigger = {
		tag = CHI
		has_variable = mng_accepted_jesuits
		"religion_percentage_in_country(religion:catholic)" > 0
		religion != religion:catholic
		any_cabinet_character = {
			religion != religion:catholic
		}
	}

	illustration_tags = {
		10 = interior
		10 = angry
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:nobles_estate }
		random_cabinet_character = {
			limit = {
				religion != religion:catholic
			}
			save_scope_as = target_character
			change_character_religion = religion:catholic
		}
	}

	option = {
		name = flavor_chi.14.a
		remove_from_cabinet = scope:target_character
		scope:target_character = {
			add_character_modifier = { modifier = banned_from_cabinet years = 5 mode = add_and_extend }
		}
		if = {
			limit = { modifier:allow_righteousness = yes }
			add_righteousness = righteousness_weak_penalty
		}
	}
	option = {
		name = flavor_chi.14.b
		add_stability = stability_mild_penalty
		if = {
			limit = { modifier:allow_harmony = yes }
			harmony_mild_towards_equilibrium = yes
		}
	}
}