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_mal.6 尼阿玛宗教的挑战

时间范围:1350.1.1 - 1500.1.1(每月 2% 概率)

触发条件

  • 国家宗教属于穆斯林宗教组(religion.group = religion_group:muslim)。
  • 国家内尼阿玛宗教(religion:nyama_religion)的信仰人口比例大于0("religion_percentage_in_country(religion:nyama_religion)" > 0)。

关键效果

  • 选项 A (历史选项)
    • 名称:flavor_mal.6.a
    • 若已授予“受保护的农民信仰”(estate_privilege:peasants_protected_faith)特权,则将其撤销。
    • 国家稳定度遭受极端惩罚(add_stability = stability_extreme_penalty)。
    • 在所有拥有尼阿玛宗教人口的省份中,选取人口最多的省份(最多选取1个,但选取数量会额外增加总省份数的10%),将该省份内所有尼阿玛宗教人口(pop)的信仰强制改为国家主流宗教(root.religion)。
  • 选项 B
    • 名称:flavor_mal.6.b
    • 国家稳定度获得小幅增益(add_stability = stability_mild_bonus)。

背景介绍: 在14至15世纪的马里帝国,伊斯兰教作为国教与统治阶层信仰,与广泛存在于民间的传统尼阿玛宗教并存。随着帝国中央权力的强化与宗教统一政策的推行,如何处理境内根深蒂固的本土信仰人口,成为统治者面临的重要抉择。是采取强硬手段推动宗教同化,还是容忍多元信仰以维持社会稳定,这一决策将深刻影响帝国的内部凝聚力与未来发展。

完整事件代码

flavor_mal.6 = {
	type = country_event
	title = flavor_mal.6.title
	desc = flavor_mal.6.desc
	fire_only_once = yes

	dynamic_historical_event = {
		tag = MAL
		from = 1350.1.1
		to = 1500.1.1
		monthly_chance = 2
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
	}

	trigger = {
		religion.group = religion_group:muslim
		"religion_percentage_in_country(religion:nyama_religion)" > 0
	}

	option = {
		name = flavor_mal.6.a
		historical_option = yes
		if = {
			limit = { has_estate_privilege = estate_privilege:peasants_protected_faith }
			revoke_estate_privilege = estate_privilege:peasants_protected_faith
		}
		add_stability = stability_extreme_penalty
		ordered_owned_location = {
			limit = {
				any_pop = {
					religion = religion:nyama_religion
				}
			}
			max = {
				value = 1
				add = {
					value = num_provinces
					multiply = 0.1
				}
			}
			order_by = population

			every_pop = {
				limit = { religion = religion:nyama_religion }
				change_pop_religion = root.religion
			}
		}
	}
	option = {
		name = flavor_mal.6.b
		add_stability = stability_mild_bonus
	}
}