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_eth.110] 脱离宗主教区

时间范围:1475.1.1 - 1515.1.1(每月 5% 概率触发)

触发条件

  • 国家宗教为 miaphysite(一性论)。
  • 国家是一个 autocephalous_patriarchate(自主宗主教区)国际组织的成员。
  • 该宗主教区的 seat(席位)不在 lalibela 地区、lalibela 地区(代码中重复)或触发国的首都。
  • alexandria 地区被一个宗教组为 muslim 的国家所拥有。

关键效果

  • 选项 A (flavor_eth.110.a):

    • 获得 stability_extreme_bonus(极大稳定度加成)。
  • 选项 B (flavor_eth.110.b):

    • 设置变量 eth_autonomous_church = 1
    • 将国家从所有 autocephalous_patriarchate 类型的国际组织中移除。
    • 创建一个新的 autocephalous_patriarchate 类型国际组织,并将触发国设为领导者。
    • 根据以下优先级选择一个地点作为新圣座:
      1. 如果拥有 lalibela 地区,则选此地。
      2. 否则,如果拥有 axum 地区,则选此地。
      3. 否则,选择首都。
    • 在选定的地点为 miaphysite 宗教创建一个 episcopal_see(主教座)类型的圣座,重要性为 2
    • 将新宗主教区的 seat(席位)变量设置为选定的地点。

背景介绍: 该事件模拟了15世纪末至16世纪初埃塞俄比亚教会寻求脱离以亚历山大为中心的宗主教区,建立自主教会的关键历史进程。当时,亚历山大被穆斯林政权控制,埃塞俄比亚的一性论教会面临着与宗主教区联系困难、受外部势力影响的困境。此事件反映了埃塞俄比亚为确立自身宗教权威和独立性所采取的重要步骤。

完整事件代码

flavor_eth.110 = { #Independence from the Patriarchate
	hide_portraits = yes
	type = country_event
	title = flavor_eth.110.title
	desc = flavor_eth.110.desc
	
	fire_only_once = yes
	dynamic_historical_event = {
		tag = ETH
		from = 1475.1.1
		to = 1515.1.1
		monthly_chance = 5
	}
	illustration_tags = {
		10 = regular
		10 = interior
	}	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
	}
	trigger = {
		religion = religion:miaphysite
		#Is a member of an autocephalous_patriarchate
		is_member_of_international_organization_of_type = {
			type = autocephalous_patriarchate
		}
		#That Patriarchate does not have its seat in the Ethiopian cities
		autocephalous_patriarchate = {
			not = {
				OR = {
					var:seat = location:lalibela
					var:seat = location:lalibela
					var:seat = root.capital
				}
			}
		}
		#Alexandria is owned by a Muslim country
		location:alexandria = {
			owner = {
				religion.group = religion_group:muslim
			}
		}
	}

	option = {
		name = flavor_eth.110.a
		add_stability = stability_extreme_bonus
	}
	option = {
		name = flavor_eth.110.b
		
		set_variable = { name = eth_autonomous_church value = 1 }

		#Remove form the Alexandria Patriarchate
		every_international_organizations_member_of = {
			limit = {
				international_organization_type = international_organization_type:autocephalous_patriarchate
			}
			remove_country_from_international_organization = root
		}

		#Create the new Patriarchate
		create_international_organization = {
			#Scoped country and religion is added automatically
			type = international_organization_type:autocephalous_patriarchate
			custom_tooltip = {
				text = new_autocephalous_patriarchate.tt
				add_country_to_international_organization = prev
				set_leader_country = prev
			}
			#So we can use it in text
			save_scope_as = new_international_organization

		}
		#Create the New Holy See in Lalibela, Axum or the capital.
		if = {
			limit = {
				owns = location:lalibela
			}
			location:lalibela = {
				save_scope_as = selected_location
			}
		}
		else_if = {
			limit = {
				owns = location:axum
			}
			location:axum = {
				save_scope_as = selected_location
			}
		}
		else = {
			root.capital = {
				save_scope_as = selected_location
			}
		}
		#Create the Holy see
		religion:miaphysite = {
			create_holy_site = {
				name = episcopal_see
				type = episcopal_see
				importance = 2
				location = scope:selected_location
				religions = { religion:miaphysite }
			}
		}
		autocephalous_patriarchate = {
			set_variable = {
				name = seat
				value = scope:selected_location
			}
		}
	}
}