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.404 阿莱斯和约

黎塞留与胡格诺派达成的最终和平协议

时间范围

1620.1.1 - 1645.1.1

  • 触发概率:每月 10% 概率

触发条件

事件仅在满足以下所有条件时可能发生:

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 名为 cardinal_richelieu 的人物存在。
  • 人物 cardinal_richelieu 存活。
  • 国家已启用 edict_of_nantes(南特敕令)政策。

关键效果

事件提供两个选项:

  1. 接受黎塞留与胡格诺派的妥协

    • 名称flavor_fra.404.a
    • 历史选项:是
    • 效果
      • 为国家添加名为 fra_richelieu_peace_of_ales 的修正,持续 20 年。
      • AI 选择此选项的概率权重为 0.7
  2. 南特敕令已经足够

    • 名称flavor_fra.404.b
    • 效果
      • 增加 stability_mild_bonus(少量稳定度)。
      • 为国家添加名为 fra_richelieu_nantes_maintained 的修正,持续 15 年。
      • AI 选择此选项的概率权重为 0.3

两个选项均会触发提示if_monarch_revokes_nantes_modifier_lost(若君主撤销南特敕令,则修正失效)。

背景介绍

1629年,在红衣主教黎塞留的主导下,法国王室与胡格诺派签订了《阿莱斯和约》。该和约确认了《南特敕令》赋予胡格诺派的宗教自由,但剥夺了他们此前拥有的军事特权和政治要塞,标志着法国宗教战争的最终结束,并强化了王权对国内武装力量的控制。

完整事件代码

flavor_fra.404 = { # Peace of Alès # Final Hugnuenot peace settlement by Richeliu
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.404.title
 	desc = flavor_fra.404.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1620.1.1
		to = 1645.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		at_war = no
		exists = character:cardinal_richelieu
		character:cardinal_richelieu = {
			is_alive = yes
		}
		has_policy = edict_of_nantes
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		character:cardinal_richelieu ?= {
			save_scope_as = target_character
		}
	}

 	option = { # Accept Richeliu Compromise with the Huguenots
		name = flavor_fra.404.a
		historical_option = yes
		custom_tooltip = if_monarch_revokes_nantes_modifier_lost
		add_country_modifier = { modifier = fra_richelieu_peace_of_ales years = 20 mode = add }
		ai_chance = {
			factor = 0.7
		}
 	}

 	option = { # The Edict of Nantes was far enough
		name = flavor_fra.404.b
		add_stability = stability_mild_bonus
		custom_tooltip = if_monarch_revokes_nantes_modifier_lost
		add_country_modifier = { modifier = fra_richelieu_nantes_maintained years = 15 mode = add }
		ai_chance = {
			factor = 0.3
		}
 	}
}