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.412] 尼古拉·富凯涉嫌腐败

时间范围

  • 发生时间:1665年1月1日 至 1675年1月1日
  • 触发概率:每月 10% 概率

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。

关键效果

事件会立即创建一位名为尼古拉·富凯(Nicholas Fouquet)的人物,其属性为:行政 52,外交 62,军事 29。

选项A:富凯必须立即辞职!

  • 历史选项:是
  • 效果:
    • 如果统治者拥有 is_sun_king_prestige_rule 修正:统治者行政 +7,外交 +7,国家获得 prestige_weak_bonus
    • 如果统治者拥有 is_sun_king_stability_rule 修正:统治者行政 +5,外交 +5,国家获得 legitimacy_mild_bonusstability_weak_bonus
    • 如果统治者没有上述任一修正:统治者行政 +4,外交 +4,国家获得 stability_weak_bonus
    • 隐藏效果:尼古拉·富凯被移除。
    • AI选择权重:0.5

选项B:警告他,但允许他保留现有职位

  • 效果:
    • 尼古拉·富凯获得持续25年的修正 fra_suspected_fouquet_corruption
    • 如果统治者拥有 is_sun_king_prestige_rule 修正:统治者行政 +4,外交 +4。
    • 如果统治者拥有 is_sun_king_stability_rule 修正:统治者行政 +2,外交 +2。
    • 如果统治者没有上述任一修正:统治者行政 +1,外交 +1。
    • AI选择权重:0.25

选项C:所谓的腐败只是毫无根据的谣言

  • 效果:
    • 国家获得 legitimacy_weak_penalty
    • 国家获得持续10年的修正 fra_fouquet_corruption
    • AI选择权重:0.25

背景介绍

该事件模拟了路易十四统治时期,其财政总监尼古拉·富凯因生活奢华、大兴土木(如建造沃子爵城堡)而引发国王猜忌,最终被指控腐败并遭到清算的历史事件。富凯的倒台标志着路易十四加强中央集权、削弱大贵族势力的重要一步。

完整事件代码

flavor_fra.412 = { # Suspected Corruption of Nicolas Fouquet
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.412.title
 	desc = flavor_fra.412.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1665.1.1
		to = 1675.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		at_war = no
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = name_nicholas
			last_name = fouquet
			adm = 52
			dip = 62
			mil = 29
			culture = culture:french
			birth_location = location:paris
			religion = religion:catholic
			birth_date = 1615.1.27
			estate = estate_type:nobles_estate
			script = nicholas_fouquet
			save_scope_as = target_character
		}
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

 	option = { # Fouquet must resign at once!
		name = flavor_fra.412.a
		historical_option = yes
		custom_tooltip = fouquet_will_resign_and_retire_from_life
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_prestige_rule
				}
			}
			ruler ?= {
				add_adm = 7
				add_dip = 7
			}
			add_prestige = prestige_weak_bonus
        }
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_stability_rule
				}
			}
			ruler ?= {
				add_adm = 5
				add_dip = 5
			}
			add_legitimacy = legitimacy_mild_bonus
			add_stability = stability_weak_bonus
        }
		if = {
			limit = {
				ruler ?= {
					NOR = {
						has_character_modifier = is_sun_king_stability_rule
						has_character_modifier = is_sun_king_prestige_rule
					}
				}
			}
			ruler ?= {
				add_adm = 4
				add_dip = 4
			}
			add_stability = stability_weak_bonus
        }
		hidden_effect = {
			kill_character_silently = scope:target_character
		}
		ai_chance = {
			factor = 0.5
		}
 	}

 	option = { # Admonish him, but allow him to retain his current position
		name = flavor_fra.412.b
		scope:target_character = {
			add_character_modifier = { modifier = fra_suspected_fouquet_corruption years = 25 mode = add }
		}
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_prestige_rule
				}
			}
			ruler ?= {
				add_adm = 4
				add_dip = 4
			}
        }
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_stability_rule
				}
			}
			ruler ?= {
				add_adm = 2
				add_dip = 2
			}
        }
		if = {
			limit = {
				ruler ?= {
					NOR = {
						has_character_modifier = is_sun_king_stability_rule
						has_character_modifier = is_sun_king_prestige_rule
					}
				}
			}
			ruler ?= {
				add_adm = 1
				add_dip = 1
			}
        }
		ai_chance = {
			factor = 0.25
		}
 	}

 	option = { # His supposed corruption are just baseless rumors
		name = flavor_fra.412.c
		add_legitimacy = legitimacy_weak_penalty
		add_country_modifier = { modifier = fra_fouquet_corruption years = 10 mode = add }
		ai_chance = {
			factor = 0.25
		}
 	}
}