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.58] 伊斯兰教在中国的传播

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

触发条件

  • 国家不是穆斯林宗教组(NOT = { religion.group = religion_group:muslim }
  • 国家内有逊尼派(Sunni)人口("religion_percentage_in_country(religion:sunni)" > 0
  • 国家拥有“异教徒容忍度”修正,且其值大于等于0(modifier:tolerance_heathen >= 0
  • 国家拥有统治者(has_ruler = yes

关键效果

  • 选项 A (flavor_chi.58.a)

    • 效果:国内所有逊尼派人口满意度获得小幅提升(pop_satisfaction_mild_bonus)。
    • 效果:所有逊尼派国家(已知本国者)对本国获得正面看法(chi_praised_islam)。
  • 选项 B (flavor_chi.58.b)

    • 效果:国家的社会价值观向“人文主义”方向移动(spiritualist_vs_humanistsocietal_value_move_to_left 变化)。
  • 选项 C (flavor_chi.58.c)

    • 触发条件:国家稳定度不低于90(stability >= 90),且“异教徒容忍度”修正值不低于1(modifier:tolerance_heathen >= 1),且玩家非AI控制(is_ai = no)。
    • 效果:国家国教改为逊尼派(change_religion = religion:sunni)。
    • 效果:统治者及其家族改信逊尼派(change_religion_for_ruler_and_family)。

背景介绍: 此事件模拟了元末明初时期(约14-15世纪),伊斯兰教通过丝绸之路和海上贸易在中国(尤其是西北和东南沿海地区)传播的历史进程。面对境内逐渐增长的穆斯林社群,统治阶层需要决定如何应对这一新的宗教与文化力量,其选择可能影响国内稳定、社会思潮,甚至国家的宗教认同。

完整事件代码

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

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

	illustration_tags = {
		10 = exterior
		10 = regular
	}

	trigger = {
		NOT = { religion.group = religion_group:muslim }
		"religion_percentage_in_country(religion:sunni)" > 0
		modifier:tolerance_heathen >= 0
		has_ruler = yes
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		random_pop = {
			limit = {
				religion = religion:sunni
			}
			save_scope_as = target_pop #illustration
		}
		if = {
			limit = {
				NOT = { exists = scope:target_pop }
			}
			random_pop = {
				save_scope_as = target_pop
			}
		}

		religion:sunni = {
			save_scope_as = target_religion
		}
		ruler = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_chi.58.a

		custom_tooltip = {
			text = chi_every_sunni_pop_gains_10_satisfaction
			every_pop = {
				limit = {
					owner = root
					religion = scope:target_religion
				}
				add_pop_satisfaction = pop_satisfaction_mild_bonus
			}
		}

		custom_tooltip = {
			text = chi_every_sunni_country_gets_bias
			scope:target_religion = {
				every_country_in_religion = {
					limit = {
						knows_country = ROOT
					}
					add_opinion = {
						modifier = chi_praised_islam
						target = ROOT
					}
				}
			}
		}
	}

	option = {
		name = flavor_chi.58.b

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_chi.58.c

		trigger = {
			stability >= 90
			modifier:tolerance_heathen >= 1
			is_ai = no
		}

		change_religion = religion:sunni
		change_religion_for_ruler_and_family = { country = ROOT religion = religion:sunni }
	}
}