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.342 昂布瓦斯阴谋

时间范围

1537.1.1 - 1637.1.1,每月 5% 概率触发。

触发条件

  • 国家正在经历灾难 french_wars_religion(法国宗教战争)。
  • 国家拥有统治者。
  • 国家未处于战争状态。

关键效果

选项 A (历史选项)

  • 名称:flavor_fra.342.a
  • 效果:
    • clergy_estate(教士阶层)增加 estate_satisfaction_extreme_bonus(极端满意加成)。
    • france_region(法兰西地区)内,所有由法国控制且平均满意度低于 0.40 的农村地区中,所有属于法国、类型为 peasants(农民)、信仰为 calvinist(加尔文宗)的人口:
      • 增加 pop_satisfaction_ultimate_penalty(终极满意度惩罚)。
      • 将人口效忠对象改为 amboise_revolt(昂布瓦斯叛乱)。
    • amboise_revolt(昂布瓦斯叛乱)增加 1 点叛乱进度。
  • AI 选择概率因子:0.75

选项 B (支持胡格诺派)

  • 名称:flavor_fra.342.b
  • 效果:
    • clergy_estate(教士阶层)增加 estate_satisfaction_extreme_penalty(极端满意惩罚)。
    • nobles_estate(贵族阶层)增加 estate_satisfaction_extreme_penalty(极端满意惩罚)。
    • 为国家添加名为 fra_concessions_to_huguenots(对胡格诺派的让步)的修正,持续 10 年。
  • AI 选择概率因子:0.25

背景介绍

昂布瓦斯阴谋是法国宗教战争初期(1560年)发生的一次重大事件。由胡格诺派贵族策划,旨在从吉斯家族手中夺取对年轻国王弗朗索瓦二世的影响力,并结束对新教徒的迫害。阴谋最终失败,导致大量参与者被处决,进一步加剧了法国天主教徒与新教徒(胡格诺派)之间的紧张关系,为后续长达数十年的宗教内战埋下了伏笔。

事件代码

flavor_fra.342 = { # Conspiracy of Amboise
	hide_portraits = yes
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.342.title
 	desc = flavor_fra.342.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
 	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	immediate = {
		ruler ?= {
            save_scope_as = ruler_fra
        }
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		create_rebel = {
			category = estate
			name = amboise_revolt
			estate = peasants_estate
			save_scope_as = amboise_revolt
		}
	}

	option = {
		name = flavor_fra.342.a
		historical_option = yes
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_bonus
		}
		every_owned_rural_location = {
			limit = {
				region = region:france_region
				owner ?= c:FRA
				average_satisfaction < 0.40
			}
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:peasants
					religion = religion:calvinist
				}
				add_pop_satisfaction = pop_satisfaction_ultimate_penalty
				change_pop_allegiance = scope:amboise_revolt
			}
		}
		scope:amboise_revolt = {
			add_rebel_progress = 1
		}
		ai_chance = {
			factor = 0.75
		}
	}

 	option = { # Side with the Huguenots
		name = flavor_fra.342.b
        # Ally with the Huguenots, vastly decrease clergy and nobles loyalty
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_penalty
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_extreme_penalty
		}
		add_country_modifier = {
			modifier = fra_concessions_to_huguenots
			years = 10
			mode = add
		}
		ai_chance = {
			factor = 0.25
		}
 	}
}