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_ned.26 宗教宽容与信仰统一

时间范围:1450.1.1 - 1550.1.1,每月 1% 概率触发

触发条件

  • 国家社会价值观 spiritualist_vs_humanist(灵性主义 vs 人文主义)大于等于 35。
  • 国家至少拥有一个省份,其人口中非国教信仰的人口比例大于等于 5%,且该省份非国教信仰人口占国家总人口的比例大于等于 10%。

关键效果

  • 选项 A (flavor_ned.26.a)

    • 社会价值观 spiritualist_vs_humanist 向“右”移动(即向灵性主义方向移动)。
    • 所有非国教信仰的人口获得 pop_satisfaction_severe_bonus(人口满意度大幅增益)。
  • 选项 B (flavor_ned.26.b)

    • 社会价值观 spiritualist_vs_humanist 向“左”移动(即向人文主义方向移动)。
    • 所有国教信仰的 clergy(神职人员)人口获得 pop_satisfaction_ultimate_bonus(人口满意度极大增益)。
    • clergy_estate(神职人员阶层)获得 estate_satisfaction_extreme_bonus(阶层满意度极端增益)。

背景介绍: 在1450年至1550年间,尼德兰地区(NED)面临着日益增长的宗教多样性挑战。随着非国教信仰人口比例达到一定规模,国家统治者必须在坚持传统信仰统一与接纳宗教多元之间做出抉择。这一事件反映了早期近代欧洲社会在宗教改革前夕所面临的核心矛盾:是强化国教权威以维护社会稳定,还是采取相对宽容的政策来缓和不同信仰群体间的紧张关系。统治者的选择将深刻影响国家的社会价值观走向,并决定不同宗教群体对国家政策的满意程度。

完整事件代码

flavor_ned.26 = {
	hide_portraits = yes
	type = country_event

	title = flavor_ned.26.title
	desc = flavor_ned.26.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = NED
		from = 1450.1.1
		to = 1550.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		societal_value:spiritualist_vs_humanist >= 35
		any_owned_location = {
			any_pop = {
				religion != root.religion
				percent >= 0.05
			}
			percent >= 0.1
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_ned.26.a

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_right
		}

		custom_tooltip = {
			text = NED_ALL_NON_TRUE_FAITH_POP_BECOME_HAPPIER
			every_owned_location = {
				limit = {
					any_pop = {
						religion != root.religion
					}
				}
				every_pop = {
					limit = {
						owner = root
						religion != root.religion
					}
					add_pop_satisfaction = pop_satisfaction_severe_bonus
				}
			}
		}
	}

	option = {
		name = flavor_ned.26.b

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_left
		}

		custom_tooltip = {
			text = NED_ALL_CLERGY_BECOME_HAPPIER
			every_owned_location = {
				limit = {
					any_pop = {
						pop_type = pop_type:clergy
						religion = root.religion
					}
				}
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:clergy
						religion = root.religion
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_bonus
				}
			}
		}

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_bonus
		}
	}
}