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.12 传教士的渗透

时间范围:无特定起止日期(from/to未定义),事件在满足条件时以未知概率(monthly_chance未定义)触发。

触发条件

  • 国家标签为 CHI(中国)。
  • 拥有变量 mng_accepted_jesuits
  • 国内天主教徒比例大于 0%("religion_percentage_in_country(religion:catholic)" > 0)。
  • 国家稳定度低于 40(stability < 40)。
  • 国家国教不是天主教(religion != religion:catholic)。

关键效果

  • 选项 Aflavor_chi.12.a):
    • 在满足特定条件(天主教徒比例低于50%、位于东亚次大陆)的随机省份中,对省内每个地块的非天主教人口,将其中的33%分裂并转换为天主教徒。
    • 如果中国是“天朝上国”国际组织的领导者,则降低少量天命值(change_celestial_authority = { value = celestial_authority_mild_penalty })。

背景介绍: 在明朝中后期,随着耶稣会等天主教传教士进入中国,他们在士大夫阶层和部分地区进行传教活动。当中央朝廷统治不稳、社会动荡时,这些外来宗教可能在一些地区获得更快的传播,对本土的儒家秩序和朝廷的天命观念构成潜在挑战。此事件模拟了在特定条件下,天主教信仰在中国地方上的渗透与扩散。

完整事件代码

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

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

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		random_province = {
			limit = {
				"religion_percentage(religion:catholic)" < 0.5
				sub_continent = sub_continent:east_asia
			}
			save_scope_as = target_province
		}
	}

	option = {
		name = flavor_chi.12.a
		scope:target_province = {
			every_location_in_province = {
				random_pop = {
					limit = {
						not = { religion = religion:catholic }
					}

					split_pop = {
						fraction = 0.33
						religion = religion:catholic
					}
				}
			}
		}
		if = {
			limit = { is_leader_of_international_organization = international_organization:middle_kingdom }
			change_celestial_authority = { value = celestial_authority_mild_penalty }
		}
	}
}