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.403 愚人日事件

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

触发条件

  • 国家拥有君主。
  • 国家未处于战争状态。
  • 人物“cardinal_richelieu”(黎塞留枢机主教)存在且存活。
  • 君主的母亲存在且存活。

关键效果

  • 选项 A:支持黎塞留,他已证明了自己 (历史选项)
    • 人物“cardinal_richelieu”获得持续180个月的修正“fra_richelieu_uncontested_at_court”(黎塞留在宫廷中不受挑战)。
    • 君主的母亲将被流放至一个随机邻国(若存在),否则将从游戏中消失。
  • 选项 B:<Queen_mother>是对的,但宫廷仍需黎塞留
    • 人物“cardinal_richelieu”获得持续180个月的修正“fra_richelieu_demotion_in_court”(黎塞留在宫廷中被降职)。
  • 选项 C:<Queen_mother>是对的,将黎塞留逐出宫廷
    • 国家获得少量稳定度加成。
    • 人物“cardinal_richelieu”将从游戏中消失。

背景介绍: “愚人日”(1630年11月11日)是法国波旁王朝宫廷政治中的一次关键危机。以国王路易十三的母亲玛丽·德·美第奇和国王的弟弟加斯东·奥尔良公爵为首的反黎塞留派系,试图利用国王生病的机会,说服他罢免权倾朝野的首相黎塞留枢机主教。然而,路易十三最终选择继续信任和支持黎塞留,导致反对派计划失败,玛丽·德·美第奇被迫流亡。此事件巩固了黎塞留的地位,使其得以继续推行强化王权、打击贵族和哈布斯堡家族的政策。

完整事件代码

flavor_fra.403 = { # Day of the Dupes # Conflict between Richeliu and the Queen-Mother
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.403.title
 	desc = flavor_fra.403.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1630.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
		}
		exists = ruler.mother
        ruler.mother = {
            is_alive = yes
        }
 	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler.mother = {
			save_scope_as = fra_queen_mother
		}
		character:cardinal_richelieu ?= {
			save_scope_as = target_character
		}
		random_neighbor_country = { save_scope_as = target_country }
		if = {
			limit = { NOT = { exists = scope:target_country } }
			random_country = {
				limit = { within_diplomatic_range = scope:fra_queen_mother }
				save_scope_as = target_country
			}
		}
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

 	option = { # Side with Richeliu, he has proven himself
		name = flavor_fra.403.a
		historical_option = yes
        scope:target_character = {
            add_character_modifier = {
                modifier = fra_richelieu_uncontested_at_court
                months = 180
                mode = add
            }
        }
		scope:fra_queen_mother = {
			if = {
				limit = { exists = scope:target_country }
				move_country = scope:target_country
			}
			else = {
				kill_character_silently = {
					target = scope:fra_queen_mother
					reason = vanished
				}
			}
		}
		ai_chance = {
			factor = 0.6
		}
 	}

 	option = { # <Queen_mother> is right, though Richelieu is still needed at Court
		name = flavor_fra.403.b
        scope:target_character = {
            add_character_modifier = {
                modifier = fra_richelieu_demotion_in_court
                months = 180
                mode = add
            }
        }
		ai_chance = {
			factor = 0.15
		}
 	}

 	option = { # <Queen_mother> is right, exile Richeliu from Court
		name = flavor_fra.403.c
		add_stability = stability_mild_bonus
		custom_tooltip = {
			text = richelieu_retires_from_court
			kill_character_silently = scope:target_character
		}
		set_variable = { name = silent_richelieu_death value = 1 }
		ai_chance = {
			factor = 0.25
		}
 	}
}