flavor_fra.7 投石党运动
时间范围
1600.1.1 - 1650.1.1,在此时间段内,每月有 5% 的概率触发此事件。
触发条件
- 国家必须拥有一位君主 (
has_ruler = yes)。 - 国家正统性 (
legitimacy) 低于 50。
关键效果
事件触发后,立即执行以下操作:
- 生成一个名为
fronde_uprising的贵族阶层 (estate_type:nobles_estate) 叛乱,并将其保存为作用域fronde_uprising。 - 将当前统治者保存为作用域
fra_ruler。
玩家随后有两个选项:
选项 A (历史选项)
- 名称:
flavor_fra.7.a - 效果:
- 贵族加入叛乱:在法兰西地区 (
region:france_region) 内,所有效忠于本国的贵族人口 (pop_type:nobles) 将:- 获得“极度不满”的满意度惩罚 (
add_pop_satisfaction = pop_satisfaction_ultimate_penalty)。 - 改变其效忠对象,加入
fronde_uprising叛乱 (change_pop_allegiance = scope:fronde_uprising)。
- 获得“极度不满”的满意度惩罚 (
- 废除贵族特权:废除以下贵族阶层特权:
estate_privilege:nobles_land_rights(贵族土地权利)estate_privilege:noble_leaders_only(唯贵族可为将领)estate_privilege:primacy_of_nobility(贵族优先权)
- 社会价值观转变:社会价值观“中央集权 vs 地方分权” (
centralization_vs_decentralization) 大幅向左移动(即向中央集权方向移动)。
- 贵族加入叛乱:在法兰西地区 (
选项 B
- 名称:
flavor_fra.7.b - 效果:
- 安抚贵族:贵族阶层满意度小幅提升 (
add_estate_satisfaction = estate_satisfaction_mild_bonus)。 - 授予贵族特权:授予以下贵族阶层特权:
estate_privilege:nobles_land_rights(贵族土地权利)estate_privilege:noble_leaders_only(唯贵族可为将领)estate_privilege:primacy_of_nobility(贵族优先权)estate_privilege:noble_serfdom_rights(贵族农奴制权利)estate_privilege:elaborate_court_ceremonies(繁复宫廷礼仪)
- 社会价值观转变:社会价值观“中央集权 vs 地方分权” (
centralization_vs_decentralization) 大幅向右移动(即向地方分权方向移动)。
- 安抚贵族:贵族阶层满意度小幅提升 (
背景介绍
投石党运动是17世纪中叶在法国发生的一系列反对君主专制、维护贵族传统特权与地方权力的内战与政治动荡。其根源在于王室为应对三十年战争带来的财政危机,试图加强中央集权、增加税收,这严重侵害了高等法院、贵族及资产阶级的利益。运动以巴黎高等法院和贵族为首,期间巴黎甚至爆发了街垒战。最终,虽然王室在军事上取得了胜利,但这场运动深刻暴露了绝对君主制下的社会矛盾,并为后来路易十四的集权改革埋下了伏笔。
完整事件代码
flavor_fra.7 = { # The Fronde in France
type = country_event
title = flavor_fra.7.title
desc = flavor_fra.7.desc
historical_info = flavor_fra.7.historical_info
fire_only_once = yes
dynamic_historical_event = {
tag = FRA
from = 1600.1.1
to = 1650.1.1
monthly_chance = 5
}
trigger = {
has_ruler = yes
legitimacy < 50
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
create_rebel = {
category = estate
name = fronde_uprising
estate = nobles_estate
save_scope_as = fronde_uprising
}
ruler ?= {
save_scope_as = fra_ruler
}
}
illustration_tags = {
10 = angry
10 = interior
}
option = {
name = flavor_fra.7.a
historical_option = yes
custom_tooltip = {
text = fronde_joining
every_owned_location = {
limit = {
region = region:france_region
}
every_pop = {
limit = {
owner = root
pop_type = pop_type:nobles
}
add_pop_satisfaction = pop_satisfaction_ultimate_penalty
change_pop_allegiance = scope:fronde_uprising
}
}
}
revoke_estate_privilege = estate_privilege:nobles_land_rights
revoke_estate_privilege = estate_privilege:noble_leaders_only
revoke_estate_privilege = estate_privilege:primacy_of_nobility
change_societal_value = { type = centralization_vs_decentralization value = societal_value_large_move_to_left }
}
option = {
name = flavor_fra.7.b
add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
grant_estate_privilege = estate_privilege:nobles_land_rights
grant_estate_privilege = estate_privilege:noble_leaders_only
grant_estate_privilege = estate_privilege:primacy_of_nobility
grant_estate_privilege = estate_privilege:noble_serfdom_rights
grant_estate_privilege = estate_privilege:elaborate_court_ceremonies
change_societal_value = { type = centralization_vs_decentralization value = societal_value_large_move_to_right }
}
}