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_fra.1150] 西方教会大分裂与法国

时间范围
无明确 fromto 日期,事件触发后仅发生一次(fire_only_once = yes)。

触发条件

  • 事件为特定国家事件,需由法国触发。
  • 存在名为 western_schism 的局势(situation),且该局势中定义了变量 schism_opponent_cardinal(对立枢机主教)。

关键效果

  • 支持对立教皇(历史选项)

    • 对教宗国(c:PAP)添加观点修正 opinion_fra_backed_anti_pope
    • 添加国家修正 fra_sided_with_antipope,持续 300 个月。
    • 增加教士阶层满意度(estate_satisfaction_mild_bonus)。
    • AI 选择概率:85%。
  • 接受新的教宗政策(接受罗马的教皇)

    • 触发条件:对立枢机主教(target_schism_opponent_cardinal)不属于我国。
    • 对教宗国添加观点修正 opinion_fra_accepted_italian_pope
    • 添加国家修正 fra_accepted_italian_pope,持续 300 个月。
    • AI 选择概率:5%。
  • 保持中立

    • 减少大量威望(prestige_extreme_penalty)。
    • 大幅降低宗教影响力(religious_influence_radical_penalty)。
    • AI 选择概率:10%。

背景介绍
该事件反映了 14 世纪末至 15 世纪初的西方教会大分裂时期,法国在教宗与对立教宗之间的政治与宗教抉择。法国王室与教廷关系密切,其立场直接影响国内教士阶层的态度与国家宗教权威。事件中法国可选择支持对立教宗以扩大自身影响力,承认罗马教宗以维持正统关系,或保持中立但承担威望与宗教影响力的损失。

完整事件代码

flavor_fra.1150 = { # Western Schism and France
	type = country_event
	title = flavor_fra.1150.title
	desc = flavor_fra.1150.desc

	fire_only_once = yes

	illustration_tags = {
		10 = angry
		10 = interior
	}	

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		ruler_or_regent ?= {
			save_scope_as = ruler_fra
		}
		c:PAP = {
			ruler_or_regent ?= {
				save_scope_as = pap_ruler
			}
		}
		situation:western_schism = {
			var:schism_opponent_cardinal = {
				save_scope_as = target_schism_opponent_cardinal
			}
		}
	}

	option = { # Support the Anti=Pope
		name = flavor_fra.1150.a
		historical_option = yes
		add_opinion = { target = c:PAP modifier = opinion_fra_backed_anti_pope }
		add_country_modifier = { modifier = fra_sided_with_antipope months = 300 mode = add }
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
		ai_chance = {
			base = 85
		}
	}
	
	option = { # Accept the new Papal Policy ## Accept Rome's Pope
		name = flavor_fra.1150.b
		trigger = {
			scope:target_schism_opponent_cardinal = {
				NOT = {
					owner = root
				}
			}
		}

		add_opinion = { target = c:PAP modifier = opinion_fra_accepted_italian_pope }
		add_country_modifier = { modifier = fra_accepted_italian_pope months = 300 mode = add }
		ai_chance = {
			base = 5
		}
	}
	
	option = { # Remain Neutral
		name = flavor_fra.1150.c
		add_prestige = prestige_extreme_penalty
		add_religious_influence = religious_influence_radical_penalty
		ai_chance = {
			base = 10
		}
	}
}