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_byz.55 皈依天主教

时间范围:1400.1.1 - 1500.1.1,每月 1% 概率触发

触发条件

  • 国家不是列强 (is_great_power = no)
  • 国家宗教为东正教 (religion = religion:orthodox)
  • 事件仅触发一次 (fire_only_once = yes)

关键效果

  • 选项 A:皈依天主教 (历史选项)

    • 国家宗教改为天主教 (change_religion = religion:catholic)
    • 统治者及其家族宗教改为天主教 (change_religion_for_ruler_and_family)
    • 天主教教会领袖国家对本国获得正面看法 (add_opinion)
    • 本国加入天主教教会国际组织 (add_country_to_international_organization)
    • 神职人员阶层满意度大幅下降 (add_estate_satisfaction: estate_satisfaction_radical_penalty)
    • 所有东正教人口满意度急剧下降 (add_pop_satisfaction: pop_satisfaction_ultimate_penalty)
  • 选项 B:保持东正教信仰

    • 神职人员阶层满意度大幅提升 (add_estate_satisfaction: estate_satisfaction_extreme_bonus)

背景介绍: 该事件模拟了拜占庭帝国在15世纪面临的一个重大历史抉择。面对奥斯曼帝国的持续压力,部分拜占庭统治者和贵族曾考虑通过皈依天主教来换取西方(特别是教皇和天主教国家)的军事与经济援助,以挽救濒临崩溃的帝国。这一选择在现实中体现为1439年的佛罗伦萨会议,会上达成了东正教会与天主教会形式上的联合,但在拜占庭国内遭到了强烈的反对,尤其是来自东正教神职人员和民众的抵制。事件反映了拜占庭末期的宗教政治困境:是坚持传统的东正教信仰,还是为了生存而接受与西方的宗教统一。

完整事件代码

flavor_byz.55 = { #Become, *shudders*, Catholic
	type = country_event
	title = flavor_byz.55.title
	desc = flavor_byz.55.desc
	image = "gfx/interface/illustrations/international_organization_types/catholic_church.dds"

	fire_only_once = yes

	trigger = {
		is_great_power = no
		religion = religion:orthodox
		#When the Council of Florence is made, there should be a trigger for it to be ongoing
	}

	dynamic_historical_event = {
		tag = BYZ
		from = 1400.1.1
		to = 1500.1.1
		monthly_chance = 1
	}

	immediate = {
		ruler_or_regent ?= {
			save_scope_as = target_character
		}

		international_organization:catholic_church.leader_country = {
			save_scope_as = target_country
		}

		international_organization:catholic_church.leader_country.ruler_or_regent ?= {
			save_scope_as = target_character2
		}
	}

	option = { #Convert to Catholic
		name = flavor_byz.55.a

		change_religion = religion:catholic
		change_religion_for_ruler_and_family = { country = ROOT religion = religion:catholic }

		scope:target_country = {
			add_opinion = {
				modifier = opinion_joined_catholicism
				target = root
			}
		}

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_radical_penalty #No one would like it
		}

		international_organization:catholic_church = {
			add_country_to_international_organization = root
		}

		custom_tooltip = {
			text = BYZ_ALL_ORTHODOX_BECOME_UNHAPPY
			every_owned_location = {
				limit = {
					any_pop = {
						religion = religion:orthodox
					}
				}
				every_pop = {
					limit = {
						owner = root
						religion = religion:orthodox
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
				}
			}
		}
	}

	option = { #Stay Orthodox
		name = flavor_byz.55.b

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_bonus
		}
	}
}