flavor_pap.1502 圣彼得大教堂建设中断
时间范围:无明确起止日期(from/to未定义),为一次性事件(fire_only_once = yes)。
触发条件:
- 当前国家为 教皇国(
tag = PAP)。 - 罗马地区(
location:rome)的控制器 不是 教皇国。 - 教皇国(
c:PAP)作为一个国家 仍然存在。 - 教皇国 正在建造圣彼得大教堂(拥有国家修正
saint_peter_basilica_being_built或saint_peter_basilica_being_built_with_own_money中的任意一个)。
关键效果:
- 选项 A(
flavor_pap.1502.a):- 国家威望轻微下降(
add_prestige = prestige_mild_penalty)。 - 国家稳定度轻微下降(
add_stability = stability_mild_penalty)。 - 罗马地区繁荣度轻微下降(
change_prosperity = prosperity_weak_penalty)。 - 移除所有与圣彼得大教堂建设相关的修正:
- 若天主教信仰拥有修正
saint_peter_basilica_being_built_with_indulgences,则移除。 - 若国家拥有修正
saint_peter_basilica_being_built,则移除。 - 若国家拥有修正
saint_peter_basilica_being_built_with_own_money,则移除。
- 若天主教信仰拥有修正
- 国家威望轻微下降(
背景介绍: 该事件模拟了文艺复兴时期,圣彼得大教堂这一宏伟工程在建造过程中可能遭遇的挫折。当教皇国失去对罗马的控制权时(例如被外国军队占领),大教堂的建设工作将被迫中断。这不仅是一个重大的政治和军事挫败,也象征着教廷权威的受损和核心建设项目的停滞,对教皇国的声望、国内稳定以及罗马本地的经济繁荣都造成了负面影响。
完整事件代码:
flavor_pap.1502 = {
type = country_event
fire_only_once = yes
title = flavor_pap.1502.title
desc = flavor_pap.1502.desc
trigger = {
tag = PAP
location:rome = {
NOT = { controller ?= root }
}
country_exists = c:PAP
c:PAP = { #The Basilica is still being built
OR = {
has_country_modifier = saint_peter_basilica_being_built
has_country_modifier = saint_peter_basilica_being_built_with_own_money
}
}
}
illustration_tags = {
10 = angry
10 = exterior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
location:rome = {
controller = {
save_scope_as = rome_ocupier
}
}
}
option = {
name = flavor_pap.1502.a
add_prestige = prestige_mild_penalty
add_stability = stability_mild_penalty
location:rome = { change_prosperity = prosperity_weak_penalty }
#Remove all modifiers
religion:catholic = {
if = {
limit = {has_religion_modifier = saint_peter_basilica_being_built_with_indulgences}
remove_religion_modifier = saint_peter_basilica_being_built_with_indulgences
}
}
if = {
limit = { has_country_modifier = saint_peter_basilica_being_built }
remove_country_modifier = saint_peter_basilica_being_built
}
if = {
limit = { has_country_modifier = saint_peter_basilica_being_built_with_own_money }
remove_country_modifier = saint_peter_basilica_being_built_with_own_money
}
}
}