[flavor_fra.421] 贵族与凡尔赛宫
时间范围:1657.1.1 - 1726.1.1,每月 10% 概率触发
触发条件:
- 国家拥有君主。
- 国家未处于战争状态。
- 国家拥有变量
enable_sun_king_events。 - 国家拥有巴黎地区。
- 巴黎地区是首都,并且拥有至少1级的凡尔赛宫建筑。
关键效果:
- 选项A(历史选项):邀请更多显赫家族的成员入住凡尔赛宫。
- 授予特权:
residence_in_versailles(凡尔赛宫居住权)。 - 增加贵族阶层满意度:
estate_satisfaction_mild_bonus。 - 根据君主特质,获得不同加成:
- 若君主拥有
is_sun_king_prestige_rule特质:君主行政+8,外交+4,国家威望+prestige_mild_bonus。 - 若君主拥有
is_sun_king_stability_rule特质:君主行政+4,外交+8,国家稳定度+stability_mild_bonus。 - 若君主不拥有上述任一特质:君主行政+4,外交+4。
- 若君主拥有
- 自定义提示:这可能导致贵族永久性削弱。
- 授予特权:
- 选项B:宫殿将欢迎许多人,但仍将作为王室的私人住所。
- 增加正统性:
legitimacy_extreme_bonus。 - 添加国家修正:
fra_versailles_royals_only,持续15年。
- 增加正统性:
背景介绍: 凡尔赛宫在路易十四统治时期成为法国绝对君主制的象征。为了加强对贵族的控制,国王邀请主要贵族家族入住凡尔赛宫,使其从地方权力中心转移到宫廷,直接处于王室的监视和影响之下。这一政策旨在削弱贵族的独立性,巩固中央集权,但也可能带来意想不到的长期后果。
完整事件代码:
flavor_fra.421 = { # The Nobility and the Palace of Versailies
type = country_event
fire_only_once = yes
title = flavor_fra.421.title
desc = flavor_fra.421.desc
dynamic_historical_event = {
tag = FRA
from = 1657.1.1
to = 1726.1.1
monthly_chance = 10
}
trigger = {
has_ruler = yes
at_war = no
has_variable = enable_sun_king_events
owns = location:paris
location:paris = {
is_capital = yes
has_building_with_at_least_one_level = versailles
}
}
illustration_tags = {
10 = regular
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
ruler ?= {
save_scope_as = fra_ruler
}
set_variable = { name = enable_residence_in_versailles value = 1 }
}
option = { # Invite more members of the prominent families to take residence at Versailies
name = flavor_fra.421.a
historical_option = yes
custom_tooltip = this_may_lead_to_permanent_weakening_of_the_nobility
grant_estate_privilege = estate_privilege:residence_in_versailles
add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
if = {
limit = {
ruler ?= {
has_character_modifier = is_sun_king_prestige_rule
}
}
ruler ?= {
add_adm = 8
add_dip = 4
}
add_prestige = prestige_mild_bonus
}
if = {
limit = {
ruler ?= {
has_character_modifier = is_sun_king_stability_rule
}
}
ruler ?= {
add_adm = 4
add_dip = 8
}
add_stability = stability_mild_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
}
}
ai_chance = {
factor = 0.9
}
}
option = { # The palace will welcome many, but will remain a private residence for the royal family
name = flavor_fra.421.b
add_legitimacy = legitimacy_extreme_bonus
add_country_modifier = { modifier = fra_versailles_royals_only years = 15 mode = add }
ai_chance = {
factor = 0.1
}
}
}