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_mos.14 莫斯科大主教阿列克西登场

时间范围

1340.1.1 - 1378.1.1,在此期间每月有 5% 的概率触发。

触发条件

  • 国家拥有 seat_of_metropolitan_bishop 科技。
  • 满足以下条件之一:
    • 首都发展度 >= 10。
    • 宗教影响力 >= 25。
  • 国家宗教为东正教 (religion:orthodox)。

关键效果

事件将创建一位名为 阿列克西 的教士阶层人物,其属性为:行政 70-90,外交 70-90,军事 0-10。他拥有 unsuited_for_naval_commandunsuited_for_army_command 特质,并会获得 metropolitan 人物修正。

选项 A:欢迎大主教(历史选项)

  • 阿列克西将加入我国。
  • 如果国家没有摄政王,则统治者将获得:
    • 行政 +10
    • 外交 +10
    • pious 特质
  • AI 选择权重:1

选项 B:任命他为摄政王

  • 触发条件:国家有摄政王。
  • 任命阿列克西为摄政王。
  • 阿列克西获得 spiritual_administrator 人物修正。
  • 阿列克西将加入我国。
  • AI 选择权重:0.5

选项 C:拒绝他的服务

  • 秘密处决阿列克西。
  • 社会价值观向 传统主义 vs 创新右侧 移动。
  • 教士阶层满意度受到 轻微惩罚
  • AI 选择权重:0.5

背景介绍

此事件模拟了14世纪中叶,莫斯科公国在获得“大主教座堂”科技后,东正教影响力提升的关键时刻。历史人物阿列克西大主教登场,他是一位杰出的宗教与行政管理者,其到来对巩固莫斯科作为罗斯东正教中心、提升统治者威望以及国家治理产生了深远影响。事件反映了当时政教关系的互动,以及统治者对待高级神职人员的不同策略可能带来的后果。

完整事件代码

flavor_mos.14 = {
	type = country_event
	fire_only_once = yes
	title = flavor_mos.14.title
	desc = flavor_mos.14.desc

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1340.1.1
		to = 1378.1.1
		monthly_chance = 5
	}

	trigger = {
		has_advance = seat_of_metropolitan_bishop
		OR = {
			capital = {
				development >= 10
			}
			religious_influence >= 25
		}
		religion = religion:orthodox
	}
	
	illustration_tags = {
		10 = happy
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:nobles_estate }
		capital = {
			save_scope_as = target_location
		}
		create_character = {
			first_name = name_alexander
			last_name = Metropolitan
			adm = {70 90}
			dip = {70 90}
			mil = {0 10}
			estate = estate_type:clergy_estate
			birth_date = 1296.1.1
			birth_location = location:boldyzh
			add_trait = trait:unsuited_for_naval_command
			add_trait = trait:unsuited_for_army_command
			save_scope_as = metropolitan_alexius
			script = mos_metropolitan_alexius
			create_in_limbo = yes
		}
		scope:metropolitan_alexius = {
			add_character_modifier = {
				modifier = metropolitan
				years = -1
				mode = add_and_extend
			}
		}
	}

	option = {
		name = flavor_mos.14.a
		historical_option = yes
		scope:metropolitan_alexius = { move_country = root }
		if = {
			limit = {
				has_regent = no
			}
			ruler = {
				add_adm = 10
				add_dip = 10
				add_trait = trait:pious
			}
		custom_tooltip = flavor_mos.14.tt2
		}
		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.14.b
		trigger = { has_regent = yes }
		set_regent = scope:metropolitan_alexius
		scope:metropolitan_alexius = {
			add_character_modifier = {
				modifier = spiritual_administrator
				years = -1
				mode = add_and_extend
			}
		}
		scope:metropolitan_alexius = { move_country = root }
		ai_chance = {
			factor = 0.5
		}
	}

	option = {
		name = flavor_mos.14.c
		hidden_effect = { kill_character_silently = scope:metropolitan_alexius }
		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_right
		}
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_penalty }
		custom_tooltip = flavor_mos.14.tt3
		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.14.historical_info
}