flavor_fra.2034 公益同盟的胜利或国家的胜利
时间范围
1450.1.1 - 1475.1.1,每月 100% 概率触发。
触发条件
- 全局变量
league_of_public_weal_enabled存在。 - 满足以下任一条件:
- 全局变量
league_of_public_weal_royalist_victory存在。 - 全局变量
league_of_public_weal_appanage_victory存在。
- 全局变量
- 国家拥有统治者。
关键效果
选项 A:可怕的转折
- 历史选项:是
- 触发条件:全局变量
league_of_public_weal_appanage_victory存在。 - 效果:
- 添加国家修正
fra_treaty_of_public_weal,持续15年。 - 社会价值观“中央集权 vs 地方分权”大幅向右移动(趋向中央集权)。
- 所有拥有改革
government_reform:french_appanage_reform的附庸国,获得修正appanage_greater_autonomy,持续15年。 - 移除全局变量
league_of_public_weal_enabled。
- 添加国家修正
选项 B:王权的重大胜利!
- 触发条件:全局变量
league_of_public_weal_royalist_victory存在。 - 效果:
- 添加国家修正
fra_royalist_victory_over_the_league_of_weal,持续15年。 - 社会价值观“中央集权 vs 地方分权”大幅向右移动(趋向中央集权)。
- 移除全局变量
league_of_public_weal_enabled。
- 添加国家修正
背景介绍
此事件反映了15世纪中叶法国“公益同盟”战争的结果。这场战争是法国大贵族为对抗国王路易十一加强中央集权的努力而组成的联盟。事件的结局决定了法国未来的政治走向:是王权成功压制了贵族势力,进一步巩固了国家统一;还是贵族联盟取得优势,迫使国王做出重大让步,增强了地方领主的自治权。不同的胜利方将触发不同的事件选项,对法国的中央与地方关系产生深远影响。
完整事件代码
flavor_fra.2034 = { # Triumph of the League or Triumph of the State
type = country_event
fire_only_once = yes
title = {
first_valid = {
triggered_desc = {
trigger = {
has_global_variable = league_of_public_weal_royalist_victory
}
desc = flavor_fra.2034.title_royalist
}
triggered_desc = {
trigger = {
has_global_variable = league_of_public_weal_appanage_victory
}
desc = flavor_fra.2034.title_league
}
}
}
desc = {
first_valid = {
triggered_desc = {
trigger = {
has_global_variable = league_of_public_weal_royalist_victory
}
desc = flavor_fra.2034.desc_royalist
}
triggered_desc = {
trigger = {
has_global_variable = league_of_public_weal_appanage_victory
}
desc = flavor_fra.2034.desc_league
}
}
}
dynamic_historical_event = {
tag = FRA
from = 1450.1.1
to = 1475.1.1
monthly_chance = 100
}
trigger = {
has_global_variable = league_of_public_weal_enabled
OR = {
has_global_variable = league_of_public_weal_royalist_victory
has_global_variable = league_of_public_weal_appanage_victory
}
has_ruler = yes
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
ruler ?= {
save_scope_as = ruler_fra
}
}
illustration_tags = {
10 = regular
10 = interior
}
option = { # A horrible turn of events
name = flavor_fra.2034.a
trigger = {
has_global_variable = league_of_public_weal_appanage_victory
}
historical_option = yes
custom_tooltip = public_weal_will_disband
add_country_modifier = { modifier = fra_treaty_of_public_weal years = 15 mode = add }
change_societal_value = {
type = centralization_vs_decentralization
value = societal_value_large_move_to_right
}
every_subject = {
limit = {
has_reform = government_reform:french_appanage_reform
}
add_country_modifier = { modifier = appanage_greater_autonomy years = 15 mode = add }
}
remove_global_variable = league_of_public_weal_enabled
}
option = { # A Major victory for the Crown!
name = flavor_fra.2034.b
trigger = {
has_global_variable = league_of_public_weal_royalist_victory
}
custom_tooltip = public_weal_will_disband
add_country_modifier = { modifier = fra_royalist_victory_over_the_league_of_weal years = 15 mode = add }
change_societal_value = {
type = centralization_vs_decentralization
value = societal_value_large_move_to_right
}
remove_global_variable = league_of_public_weal_enabled
}
}