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.402 黎塞留压制贵族

时间范围:1620.1.1 - 1645.1.1(每月 10% 概率)

触发条件

  • 国家拥有君主。
  • 国家未处于战争状态。
  • 名为 cardinal_richelieu 的人物存在。
  • 人物 cardinal_richelieu 存活。
  • 国家拥有变量 richelieu_may_supress

关键效果

  • 选项 A:采纳黎塞留的政策改革

    • 历史选项:是
    • 效果:
      • 贵族阶层满意度:estate_satisfaction_extreme_penalty(极端惩罚)。
      • 国家获得修正:fra_richelieu_nobility_influence_reduced,持续15年。
      • AI选择权重:50%。
  • 选项 B:黎塞留的压制可能引发大规模叛乱!

    • 效果:
      • 贵族阶层满意度:estate_satisfaction_mild_penalty(轻微惩罚)。
      • 国家获得修正:fra_richelieu_compromise,持续15年。
      • AI选择权重:25%。
  • 选项 C:必须立即驱逐黎塞留!

    • 效果:
      • 隐藏效果:杀死人物 target_character(即黎塞留)。
      • 国家获得修正:fra_richelieu_banished_supression,持续15年。
      • 贵族阶层满意度:estate_satisfaction_mild_bonus(轻微奖励)。
      • 国家威望:prestige_mild_penalty(轻微惩罚)。
      • AI选择权重:25%。

背景介绍: 该事件模拟了法国首相、红衣主教黎塞留(Cardinal Richelieu)在1620年至1645年间,为加强中央王权、削弱地方封建贵族势力而推行的一系列改革。黎塞留的政策旨在压制传统贵族的政治影响力,巩固君主专制,但这不可避免地激化了与贵族阶层的矛盾,可能引发国内动荡甚至叛乱。事件反映了法国绝对君主制形成过程中的关键冲突。

完整事件代码

flavor_fra.402 = { # Richelieu Supression of the Nobility
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.402.title
 	desc = flavor_fra.402.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_variable = richelieu_may_supress
 	}

	illustration_tags = {
		10 = angry
		10 = interior
	}	

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

 	option = { # Adopt Richeliu's policy reforms
		name = flavor_fra.402.a
		historical_option = yes
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_penalty }
		add_country_modifier = { modifier = fra_richelieu_nobility_influence_reduced years = 15 mode = add }
		ai_chance = {
			factor = 0.5
		}
 	}

 	option = { # Richeliu supression may cause a major revolt!
		name = flavor_fra.402.b
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty }
		add_country_modifier = { modifier = fra_richelieu_compromise years = 15 mode = add }
		ai_chance = {
			factor = 0.25
		}
 	}

 	option = { # Richeliu must be expelled immediately!
		name = flavor_fra.402.c
		hidden_effect = {
			kill_character_silently = scope:target_character
		}
		add_country_modifier = { modifier = fra_richelieu_banished_supression years = 15 mode = add }
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
		add_prestige = prestige_mild_penalty
		ai_chance = {
			factor = 0.25
		}
 	}
}