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

333 沙托布里昂敕令

时间范围:1537.1.1-1637.1.1,每月 5% 概率

触发条件

  • 国家为 FRA
  • 正在发生灾难 french_wars_religion
  • 拥有统治者。
  • 未处于战争状态。
  • 未启用政策 reformist_tolerance
  • 未启用政策 protestant_tolerance
  • 拥有变量 enable_fra_tolerance_edicts
  • 拥有变量 rise_of_the_huguenots
  • 宗教 calvinist 已启用。
  • 宗教 lutheran 已启用。

关键效果

  • 选项 A (历史选项): “我们必须采取极端措施!”
    • 增加宗教影响力:religious_influence_extreme_bonus
    • 解锁政策效果:edict_of_chateaubriant
    • 添加政策:policy:edict_of_chateaubriant
    • AI 选择概率因子:0.75。
  • 选项 B: “抵制加强迫害新教徒的呼声”
    • 添加国家修正:fra_rejected_chateaubriant,持续 10 年。
    • 降低稳定度:stability_extreme_penalty
    • 降低阶层满意度:estate_type:clergy_estate,数值为 estate_satisfaction_extreme_penalty
    • AI 选择概率因子:0.25。

背景介绍: 在法国宗教战争期间,天主教与新教(胡格诺派)的冲突日益激化。1551年颁布的《沙托布里昂敕令》是天主教法国政府试图通过法律手段进一步限制和镇压新教活动、加强宗教控制的举措,它标志着宗教迫害的升级,加剧了国内的社会与宗教对立。

完整事件代码

flavor_fra.333 = { # Edict of Chateaubriant
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.333.title
 	desc = flavor_fra.333.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1537.1.1
		to = 1637.1.1
		monthly_chance = 5
	}

 	trigger = {
		any_active_disaster = { disaster_type = disaster_type:french_wars_religion }
		has_ruler = yes
		at_war = no
		NOT = { has_policy = reformist_tolerance }
		NOT = { has_policy = protestant_tolerance }
		has_variable = enable_fra_tolerance_edicts
		has_variable = rise_of_the_huguenots
		religion:calvinist = { is_religion_enabled = yes }
		religion:lutheran = { is_religion_enabled = yes }
 	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
        ruler ?= {
            save_scope_as = ruler_fra
        }
	}

 	option = { # We must take extreme measures!
		name = flavor_fra.333.a
		historical_option = yes
		add_religious_influence = religious_influence_extreme_bonus
		custom_tooltip = fra_high_negative_tolerance_warning
		unlock_policy_effect = { type = edict_of_chateaubriant }
		add_policy = policy:edict_of_chateaubriant
		ai_chance = {
			factor = 0.75
		}
 	}

 	option = { # Resist the calls to increase persecution against the Protestants
		name = flavor_fra.333.b
		add_country_modifier = {
			modifier = fra_rejected_chateaubriant
			years = 10
			mode = add
		}
		add_stability = stability_extreme_penalty
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_extreme_penalty }
		ai_chance = {
			factor = 0.25
		}
 	}
}