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_dlh.37] 德里苏丹国宗教政策

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

触发条件

  • 内阁中存在拥有变量 dlh_grand_vizier 的人物。
  • 国家人口中印度教 (religion:hindu) 占比超过 50%。
  • 国家官方宗教不是印度教。
  • 国家存在齐米阶层 (estate_type:dhimmi_estate)。

关键效果

  • 选项 A (flavor_dlh.37.a)

    • 获得相当于 6 倍规模的金币。
    • 所有拥有印度教人口的省份中,5% 的印度教人口将皈依国家官方宗教。
    • 齐米阶层 (estate_type:dhimmi_estate) 的满意度大幅下降 (estate_satisfaction_ultimate_penalty)。
  • 选项 B (flavor_dlh.37.b)

    • 齐米阶层 (estate_type:dhimmi_estate) 的满意度小幅提升 (estate_satisfaction_mild_bonus)。

背景介绍: 此事件模拟了德里苏丹国时期(1350-1400年)面临的宗教治理挑战。作为统治印度次大陆的伊斯兰政权,德里苏丹国治下拥有庞大的印度教人口。如何管理这些非穆斯林臣民,平衡宗教同化政策与维持社会稳定的齐米制度,是苏丹及其大维齐尔(宰相)必须面对的关键决策。事件反映了统治者是在经济利益的驱动下强制部分人口改宗,还是采取更温和的安抚政策以维持齐米阶层的忠诚。

完整事件代码

flavor_dlh.37 = {
	type = country_event
	title = flavor_dlh.37.title
	desc = flavor_dlh.37.desc
	historical_info = flavor_dlh.37.historical_info

	illustration_tags = {
		10 = exterior
		10 = angry
	}

	dynamic_historical_event = {
		tag = DLH
		from = 1350.1.1
		to = 1400.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		any_cabinet_character ?= {
			has_variable = dlh_grand_vizier
		}

		"religion_percentage_in_country(religion:hindu)" > 0.5
		religion != religion:hindu
		country_has_estate = estate_type:dhimmi_estate
	}

	immediate = {
		event_illustration_peasants_foreign_religion_pop_type_effect = yes
		random_cabinet_character ?= {
			limit = {
				has_variable = dlh_grand_vizier
			}
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_dlh.37.a
		
		change_gold_effect = { scale = 6 }

		custom_tooltip = {
			text = dlh_5_percent_of_pops_convert_to_our_religion_tt
			every_owned_location = {
				limit = {
					any_pop = {
						religion = religion:hindu
					}
				}
				every_pop = {
					limit = {
						religion = religion:hindu
					}
					split_pop = {
						fraction = 0.05
						religion = root.religion
					}
				}
			}
		}

		add_estate_satisfaction = {
			type = estate_type:dhimmi_estate
			value = estate_satisfaction_ultimate_penalty
		}
	}

	option = {
		name = flavor_dlh.37.b
		
		add_estate_satisfaction = {
			type = estate_type:dhimmi_estate
			value = estate_satisfaction_mild_bonus
		}
	}
}