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_nap_pap.4 对教皇的立场

时间范围:无明确 fromto 日期限制,为动态历史事件。 触发概率:无 monthly_chance 字段,触发依赖于游戏条件。

触发条件

事件为动态历史事件,其触发条件未在提供的代码片段中明确定义。通常此类事件由游戏引擎在满足特定全局或国家条件时调用。

关键效果

事件提供两个选项,影响国家与教皇的关系、宗教改革欲望、社会价值观等。

  • 选项 A:谴责教皇

    • AI 选择权重:基础因子为 20。
      • 若国家拥有变量 pap_donation_of_constantine_nullified,则权重乘以 0.5。
    • 主要效果
      1. 增加宗教改革欲望,数值计算方式为:(本国的天主教省份数 / 全球天主教省份总数) * 4 * 严厉度乘数
      2. 若教皇国(PAP)存在,则其对我国产生“谴责教皇”的负面看法修正。
      3. (历史选项判定) 若国家拥有变量 pap_donation_of_constantine_nullified,则触发绝罚效果。
      4. 社会价值观向“创新”方向轻微移动。
  • 选项 B:无视此事

    • AI 选择权重:基础因子为 1。
      • 权重修正因子为:(我国对教皇国的看法值 + 200) / 2
    • 主要效果
      1. 社会价值观向“人文主义”方向大幅移动。
      2. 若有效,则增加 10 点宗教影响力。

背景介绍

此事件反映了宗教改革时期或之后,欧洲基督教国家(尤其是天主教国家)在面对教皇权威与教廷事务时所需做出的政治与宗教抉择。国家可以选择公开谴责教皇以彰显自身权威或宗教立场,也可能选择置身事外以避免与罗马教廷的直接冲突,这些选择将深刻影响国家的宗教格局、内部稳定以及与教皇国的外交关系。

完整事件代码

flavor_nap_pap.4 = { #Each Christian Nation can make up their mind on it
	type = country_event
	title = flavor_nap_pap.4.title
	desc = flavor_nap_pap.4.desc
	historical_info = flavor_nap_pap.4.historical_info

	immediate = {
		set_local_variable = {
			name = our_amount_of_all_catholic_locations
			value = 0
		}
		every_owned_location = {
			limit = {
				dominant_religion = religion:catholic
			}
			change_local_variable = {
				name = our_amount_of_all_catholic_locations
				add = 1
			}
		}
	}

	option = {
		name = flavor_nap_pap.4.a #Condemn the Pope

        ai_chance = {
			factor = 20
            modifier = {
                factor = 0.5
                has_local_variable = pap_donation_of_constantine_nullified
            }
		}

		religion = {
			add_reform_desire = {
				value = local_var:our_amount_of_all_catholic_locations
				divide = local_var:amount_of_all_catholic_locations
				multiply = 4
				multiply = local_var:harshness_multiplier
			}
		}
		c:PAP ?= {
			add_opinion = {
				target = ROOT
				modifier = nap_condemned_his_holiness
			}
		}

        if = {
            limit = {
                has_local_variable = pap_donation_of_constantine_nullified
            }
            excommunicate_effect = yes
        }

        change_societal_value = {
            type = traditionalist_vs_innovative
            value = societal_value_minor_move_to_right
        }
	}

	option = {
		name = flavor_nap_pap.4.b #Ignore this incident

        ai_chance = {
			factor = 1
			modifier = {
				factor = { # 0 to 200
					value = "root.opinion(c:PAP)"
					add = 200
					divide = 2
            	}
			}
		}

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_large_move_to_left
		}
        add_religious_influence_if_valid = {
            VALUE = 10
        }
	}
}