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.13 皇帝皈依天主教

时间范围
事件可在游戏时间范围内每月触发,具体概率未在代码中指定(monthly_chance 未定义)。

触发条件

  • 国家标签为 CHI(中国)
  • 拥有统治者
  • 国家主流宗教为天主教(dominant_religion = religion:catholic
  • 国家宗教组不属于基督教组(religion.group != religion_group:christian
  • 国家拥有变量 mng_accepted_jesuits
  • 内阁中至少有一位天主教徒(any_cabinet_character = { religion = religion:catholic }
  • 当前统治者不是天主教徒(ruler = { NOT = { religion = religion:catholic } }

关键效果
选项 A:flavor_chi.13.a

  • 国家宗教改为天主教(change_religion = religion:catholic
  • 统治者及其家族成员宗教改为天主教(change_religion_for_ruler_and_family
  • 统治者个人宗教改为天主教(ruler = { change_character_religion = religion:catholic }
  • 若国家是“中华朝贡体系”(international_organization:middle_kingdom)的领导者,则大幅降低天命值(change_celestial_authority = { value = celestial_authority_extreme_penalty }

选项 B:flavor_chi.13.b

  • 增加少量稳定度(add_stability = stability_mild_bonus
  • 若国家拥有 allow_righteousness 修正,则大幅增加义理值(add_righteousness = righteousness_severe_bonus
  • 若国家拥有 allow_harmony 修正,则使和谐度小幅趋向平衡(harmony_mild_towards_equilibrium = yes

背景介绍
在明朝中后期,随着耶稣会传教士如利玛窦等人进入中国,天主教开始在中国传播,并尝试接触和影响朝廷高层。此事件模拟了当中国社会已在一定程度上接纳耶稣会(拥有相关变量),且内阁中已有天主教徒大臣时,非天主教徒的皇帝面临是否皈依天主教的重大抉择。皈依可能带来深刻的国内宗教变革,并可能动摇以儒家思想与天命观为核心的中华朝贡体系的政治合法性。

完整事件代码

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

	trigger = {
		tag = CHI
		has_ruler = yes
		dominant_religion = religion:catholic
		religion.group != religion_group:christian
		has_variable = mng_accepted_jesuits
		any_cabinet_character = { religion = religion:catholic }
		ruler = {
			NOT = { religion = religion:catholic }
		}
	}

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		ruler = { save_scope_as = target_ruler }
	}

	option = {
		name = flavor_chi.13.a
		change_religion = religion:catholic
		change_religion_for_ruler_and_family = { country = ROOT religion = religion:catholic }
		ruler = { change_character_religion = religion:catholic }
		if = {
			limit = { is_leader_of_international_organization = international_organization:middle_kingdom }
			change_celestial_authority = { value = celestial_authority_extreme_penalty }
		}
	}
	option = {
		name = flavor_chi.13.b
		add_stability = stability_mild_bonus
		if = {
			limit = { modifier:allow_righteousness = yes }
			add_righteousness = righteousness_severe_bonus
		}
		if = {
			limit = { modifier:allow_harmony = yes }
			harmony_mild_towards_equilibrium = yes
		}
	}
}