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_fra.330 枫丹白露敕令

时间范围:1510.1.1 - 1637.1.1 (每月 5% 概率)

触发条件

  • 国家正在经历 french_wars_religion 灾难。
  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 国家宗教为天主教 (religion:catholic)。
  • 路德宗 (religion:lutheran) 和加尔文宗 (religion:calvinist) 已在游戏中启用。
  • 国家内路德宗信徒占比大于0。

关键效果

  • 选项 A (历史选项): “我们必须对崛起的新教采取行动”
    • 获得 stability_mild_bonus 稳定性加成。
    • 添加政策 policy:edict_of_fontainebleau
    • 隐藏效果:所有独立的或自治的附属路德宗国家将对法国产生 opinion_protestant_persecution 负面看法。
    • AI选择概率:75%。
  • 选项 B: “我们应寻求与新教徒保持人文主义立场”
    • 教士阶层 (estate_type:clergy_estate) 满意度降低 estate_satisfaction_mild_penalty
    • 解锁并添加政策 policy:protestant_tolerance
    • 隐藏效果:所有独立的或自治的附属天主教国家将对法国产生 opinion_tolerance_to_protestants 负面看法。
    • AI选择概率:25%。

背景介绍: 该事件模拟了法国在宗教改革浪潮下面临的国内宗教政策抉择。以弗朗索瓦一世时期为背景,当法国深陷宗教战争灾难时,统治者需要决定如何应对国内日益增长的新教(路德宗与加尔文宗)势力。历史路径(枫丹白露敕令)代表了法国王室为维护天主教正统和国家统一,对新教徒采取的压制政策,这加剧了与欧洲新教国家的外交紧张。另一选项则代表了一种更为宽容、寻求和解的路线,但这会激怒国内的天主教教士阶层和国际上的天主教势力。

完整事件代码

flavor_fra.330 = { # The Edict of Fontainebleau # Based on Francis I
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.330.title
 	desc = flavor_fra.330.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1510.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
		religion = religion:catholic
		religion:lutheran = { is_religion_enabled = yes }
		"religion_percentage_in_country(religion:lutheran)" > 0
		religion:calvinist = { 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
        }
		set_variable = enable_fra_tolerance_edicts
	}

 	option = { # We are forced to take action against the rise of Protestantism
		name = flavor_fra.330.a
		historical_option = yes
		custom_tooltip = fra_hostilities_with_lutheran_nations
		add_stability = stability_mild_bonus
		add_policy = policy:edict_of_fontainebleau
		hidden_effect = {
			every_other_country = {
				limit = {
					religion = religion:lutheran
					is_independent_or_autonomous_subject = yes
					NOT = {
						is_subject_of = c:FRA
					}
				}
				add_opinion = { target = c:FRA modifier = opinion_protestant_persecution }
			}
		}
		ai_chance = {
			factor = 0.75
		}
 	}

 	option = { # We should seek to maintain a humanist outlook with the Protestants
		name = flavor_fra.330.b
		custom_tooltip = fra_hostilities_with_catholic_nations
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_penalty }
		unlock_policy_effect = { type = protestant_tolerance }
		add_policy = policy:protestant_tolerance
		hidden_effect = {
			every_other_country = {
				limit = {
					religion = religion:catholic
					is_independent_or_autonomous_subject = yes
					NOT = {
						is_subject_of = c:FRA
					}
				}
				add_opinion = { target = c:FRA modifier = opinion_tolerance_to_protestants }
			}
		}
		ai_chance = {
			factor = 0.25
		}
 	}
}