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.408] 黎塞留的逝去

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

触发条件

  • 国家拥有统治者
  • 国家未处于战争状态
  • 人物“cardinal_richelieu”存在
  • 人物“cardinal_richelieu”已死亡
  • 国家未拥有变量“silent_richelieu_death”

关键效果

  • 选项 A(历史选项)

    • 名称:flavor_fra.408.a
    • 效果:增加少量威望(prestige_mild_bonus)
    • AI 选择概率权重:0.5
  • 选项 B

    • 名称:flavor_fra.408.b
    • 效果:增加少量稳定度(stability_mild_bonus)
    • AI 选择概率权重:0.5

背景介绍
该事件标志着法国历史上极具影响力的政治家、枢机主教黎塞留的去世。黎塞留作为路易十三的首相,在任期间大力强化王权、削弱贵族势力,并积极推动法国的中央集权与对外扩张,其政策深刻塑造了近代法国的政治格局。他的离世必然在国内引发关于其政治遗产的广泛讨论与反响。

完整事件代码

flavor_fra.408 = { # The Passing of Richelieu
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.408.title
 	desc = flavor_fra.408.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 = no
		}
		NOT = { has_variable = silent_richelieu_death }
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

    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 = { # For better or worse, Richeliu has left a lasting impact on France
		name = flavor_fra.408.a
		historical_option = yes
		add_prestige = prestige_mild_bonus
		ai_chance = {
			factor = 0.5
		}
 	}

 	option = { # The controvery surrounding Richelieu will trouble us no longer
		name = flavor_fra.408.b
		add_stability = stability_mild_bonus
		ai_chance = {
			factor = 0.5
		}
 	}
}