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_pap.9000] 重建教宗国

时间范围

  • 事件窗口:无特定 fromto 日期限制,可在满足条件时持续触发。
  • 触发概率:无 monthly_chance 字段,为条件满足时触发。

触发条件

事件触发需满足以下所有条件:

  • 国际组织“天主教会”存在。
  • 当前国家控制罗马地区。
  • 当前国家宗教为天主教。
  • 当前国家不是意大利(ITA)或罗马(ROM)。
  • 教宗国(PAP)不存在
  • 国家变量 no_support 的值不是 yes

关键效果

事件提供两个选项:

  1. “我们绝不会支持这样的国家”

    • AI选择权重:25%
    • 效果
      • 获得少量威望惩罚。
      • 获得严重稳定度惩罚。
      • 所有其他天主教国家(除自己外)对本国产生负面看法。
      • 设置国家变量 no_support = yes,阻止本国再次触发此事件。
      • 随机选择一个符合条件的非玩家国家,静默触发事件 flavor_pap.9001
  2. “罗马理应属于他们”

    • 历史选项:是(隐含于重建教宗国的历史行为)
    • AI选择权重:75%(若罗马地区整合度为“核心”,则权重降为0%)
    • 效果
      • 在罗马地区重建教宗国(PAP)。
      • 获得大量威望奖励。
      • 将国际组织“天主教会”的领导者国家设置为教宗国(PAP)。

背景介绍

此事件模拟了中世纪晚期至近代早期,一个非意大利、非罗马的天主教世俗国家在控制罗马城后所面临的政治与宗教抉择。历史上,教宗国作为天主教的中心,其领土主权与世俗统治者的关系时常引发冲突。此事件的核心矛盾在于:控制罗马的世俗统治者是选择否认教宗的世俗权力,承受全欧洲天主教世界的敌意;还是选择承认教宗的历史权利,恢复教宗国并赢得教会的巨大好感。这反映了当时欧洲政教关系中“叙任权”斗争的延续,以及民族国家兴起过程中对传统教权体系的挑战与妥协。

完整事件代码

flavor_pap.9000 = {
	type = country_event
	title = flavor_pap.9000.title
	desc = flavor_pap.9000.desc

	trigger = {
		exists = international_organization:catholic_church
		location:rome = {
			owner ?= root
		}
		religion = religion:catholic
		NOT = { tag = ITA }
		NOT = { tag = ROM }
		NOT = { country_exists = c:PAP }
		NOT = { var:no_support ?= yes }
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
	}
	
	on_trigger_fail = {
		random_country = {
			limit = {
				can_give_land_to_pope_trigger = yes
			}
			trigger_event_silently = {
				id = flavor_pap.9001
			}
		}
	}

	option = {
		name = flavor_pap.9000.a # We will never support such a state
		ai_chance = { factor = 25 }
		add_prestige = prestige_mild_penalty
		add_stability = stability_severe_penalty
		custom_tooltip = {
			text = every_catholic_hates_us_tt
			every_country = {
				limit = {
					religion = religion:catholic
					NOT = { this = ROOT }
				}
				add_opinion = {
					target = ROOT
					modifier = opinion_declined_independent_state_support
				}
			}
		}
		set_variable = {
			name = no_support
			value = yes
		}
		random_country = {
			limit = {
				is_human = no
				can_give_land_to_pope_trigger = yes
			}
			trigger_event_silently = {
				id = flavor_pap.9001
			}
		}
	}
	option = {
		name = flavor_pap.9000.b # Rome is rightfully theirs
		ai_chance = {
			factor = 75
			modifier = {
				factor = 0
				location:rome = {
					integration_level = core
				}
			}
		}
		reinstate_the_pope = {
			target_province = location:rome
		}
		add_prestige = prestige_extreme_bonus
		international_organization:catholic_church = {
			set_leader_country = c:PAP
		}
	}
}