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.17 约翰·库库泽利斯封圣

时间范围:1337.1.1 - 1650.1.1 (每月 5% 概率)

触发条件

  • 国家宗教为东正教 (religion = religion:orthodox)。
  • 宗教影响力至少为 50 (religious_influence >= 50)。
  • 人物 byz_john_koukouzelis 已死亡 (character:byz_john_koukouzelis ?= { is_alive = no })。

关键效果

  • 选项 A (历史选项)
    • 将人物 byz_john_koukouzelis 封为拜占庭的圣人 (make_saint = c:BYZ)。
    • 获得大量威望 (add_prestige = prestige_severe_bonus)。
    • 教士阶层满意度大幅提升 (add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_bonus })。
    • 宗教影响力大幅下降 (add_religious_influence = religious_influence_ultimate_penalty)。
    • 触发前提:宗教影响力至少为 50 (religious_influence >= 50)。
  • 选项 B
    • 教士阶层满意度轻微下降 (add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_penalty })。

背景介绍: 此事件模拟了拜占庭帝国(BYZ)对著名音乐家、作曲家及圣咏改革者约翰·库库泽利斯(John Koukouzelis)的追封圣徒过程。库库泽利斯对东正教圣咏音乐的发展有深远影响,在其去世后,教会内部可能推动其封圣,以巩固宗教权威、提升教士阶层地位,但此举也可能消耗国家的宗教影响力。

完整事件代码

flavor_byz.17 = {
	type = country_event
	title = flavor_byz.17.title
	desc = flavor_byz.17.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = BYZ
		from = 1337.1.1
		to = 1650.1.1
		monthly_chance = 5
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	trigger = {
		religious_influence >= 50
		religion = religion:orthodox
		#Wait until he dies
		character:byz_john_koukouzelis ?= {
			is_alive = no
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		character:byz_john_koukouzelis = {
			save_scope_as = john_koukouzelis
		}

	}

	option = {
		name = flavor_byz.17.a
		historical_option = yes
		trigger = {
			religious_influence >= 50
		}
		scope:john_koukouzelis = {
			make_saint = c:BYZ
		}
		add_prestige = prestige_severe_bonus
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_bonus }
		add_religious_influence = religious_influence_ultimate_penalty

	}
	option = {
		name = flavor_byz.17.b

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