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.90] 阻止新主教任命

时间范围:1460.1.1 - 1800.1.1,每月 2% 概率触发

触发条件

  • 事件触发国:
    • 宗教属于穆斯林宗教组 (religion.group = religion_group:muslim)
    • 拥有亚历山大地区 (owns = location:alexandria)
  • 国家埃塞俄比亚 (c:ETH) 必须存在 (country_exists = c:ETH)
  • 埃塞俄比亚 (c:ETH):
    • 宗教为科普特正教 (religion = religion:miaphysite)
    • 未拥有变量 eth_autonomous_church (NOT = { has_variable = eth_autonomous_church })
  • 事件触发国与埃塞俄比亚 (c:ETH) 之间:
    • 不是埃塞俄比亚的附庸国 (NOT = { is_subject_of = c:ETH })
    • 不是埃塞俄比亚的宗主国 (NOT = { overlord ?= c:ETH })
    • 未与埃塞俄比亚处于战争状态 (NOT = { is_at_war_with = c:ETH })
    • 未与埃塞俄比亚结盟 (NOT = { is_allied_with = { target = c:ETH } })

关键效果

  • 选项 A (历史选项)
    • 埃塞俄比亚 (c:ETH) 对马穆鲁克 (c:MAM) 产生“恼怒”观点 (add_opinion = { target = c:MAM modifier = opinion_irritated })
    • 埃塞俄比亚在 250 至 500 天后,静默触发事件 flavor_eth.91 (trigger_event_silently = { id = flavor_eth.91 days = { 250 500 } })
  • 选项 B
    • 事件触发国获得少量威望惩罚 (add_prestige = prestige_weak_penalty)

背景介绍: 此事件模拟了15世纪至19世纪间,控制埃及亚历山大地区的穆斯林政权(如马穆鲁克苏丹国)与信奉科普特正教的埃塞俄比亚帝国之间,围绕亚历山大科普特正教主教任命权产生的潜在冲突。历史上,埃塞俄比亚教会长期依赖亚历山大牧首任命其大主教,这一宗教纽带常受到地区政治格局变化的影响。该事件反映了当穆斯林政权控制亚历山大时,可能出于政治或宗教原因,干预或阻止埃塞俄比亚新主教的任命,从而引发两国间的外交摩擦。

完整事件代码

flavor_eth.90 = { #Prevent the appointment of a new Bishop
	type = country_event
	title = flavor_eth.90.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					has_variable = mam_ambassador_detained
				}
				desc = flavor_eth.90.desc.a
			}
			triggered_desc = {
				desc = flavor_eth.90.desc.b
			}
		}
	}
	
	fire_only_once = yes
	dynamic_historical_event = {
		tag = MAM
		from = 1460.1.1
		to = 1800.1.1
		monthly_chance = 2
	}
	
	trigger = {
		religion.group = religion_group:muslim
		owns = location:alexandria
		country_exists = c:ETH
		c:ETH = {
			religion = religion:miaphysite
			NOT = {	has_variable = eth_autonomous_church }
			
		}
		NOT = {
			is_subject_of = c:ETH
			overlord ?= c:ETH
			is_at_war_with = c:ETH
			is_allied_with = { target = c:ETH }
		}
	}
	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		c:ETH = {
			save_scope_as = target_country
			ruler_or_regent = { save_scope_as = target_ruler }
		}
	}

	option = {
		name = flavor_eth.90.a
		historical_option = yes
		c:ETH = {
			add_opinion = { target = c:MAM modifier = opinion_irritated }
			trigger_event_silently = { id = flavor_eth.91 days = { 250 500 } }
		}
	}
	option = {
		name = flavor_eth.90.b
		add_prestige = prestige_weak_penalty
	}
}