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.52] 帝国血统的宣称

时间范围:1530.1.1 - 1600.1.1(每月 5% 概率)

触发条件

  • 艺术品 tale_of_the_princes_of_vladimir 存在。
  • 该艺术品位于首都。
  • 国家没有摄政。
  • 统治者满足以下任一条件:
    • 行政能力 ≥ 50。
    • 拥有 terrible 人物修正。
  • 国家是 autocephalous_patriarchate(自主牧首区)类型国际组织的成员。
  • 该自主牧首区的席位所在省份由本国拥有。

关键效果

  • 选项 A (历史选项)
    • 如果统治者拥有 terrible 修正,则获得 government_power_severe_bonus 政府力量,并显示自定义提示 flavor_mos.52.tt1
    • 否则,获得 government_power_mild_bonus 政府力量。
    • 获得 prestige_mild_bonus 威望。
    • 统治者获得 imperial_descent(帝国血统)人物修正。
    • AI 选择权重因子:1。
  • 选项 B
    • clergy_estate(教士阶层)增加 estate_satisfaction_severe_bonus 阶层满意度。
    • 增加 religious_influence_severe_bonus 宗教影响力。
    • AI 选择权重因子:0.5。
  • 选项 C
    • 将社会价值观 spiritualist_vs_humanist(灵性主义 vs 人文主义)向右侧(灵性主义方向)移动 societal_value_move_to_right
    • AI 选择权重因子:0.5。

背景介绍: 在16世纪,莫斯科大公国(后为俄罗斯沙皇国)的统治者们致力于巩固其统治的合法性,并提升国家在东正教世界中的地位。通过宣称与古罗斯王公(如弗拉基米尔大公)的血统联系,并利用首都存放的《弗拉基米尔王公纪事》等文献,统治者可以强化其“第三罗马”和东正教保护者的宣称。此事件反映了莫斯科统治者如何利用历史、宗教文献和自主牧首区的权威,来加强自身的政治与宗教权力,塑造帝国的意识形态基础。

完整事件代码

flavor_mos.52 = {
	hide_portraits = no
	type = country_event
	fire_only_once = yes
	title = flavor_mos.52.title
	desc = flavor_mos.52.desc
	image = "gfx/interface/illustrations/international_organization_types/autocephalous_patriarchate.dds"
	
	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1530.1.1
		to = 1600.1.1
		monthly_chance = 5
	}

	trigger = {

		exists = work_of_art:tale_of_the_princes_of_vladimir
		capital = {
			any_work_of_art_in_location = {
				this ?= work_of_art:tale_of_the_princes_of_vladimir
			}
		}

		has_regent = no

		ruler = {
			OR = {
				adm >= 50
				has_character_modifier = terrible
			}
		}

		is_member_of_international_organization_of_type = {
			type = autocephalous_patriarchate
		}

		autocephalous_patriarchate = {
			var:seat = {
				owner = root
			}
		}

	}

	immediate = {

		capital = {
			save_scope_as = target_location
		}

		ruler = {
			save_scope_as = target_character
		}

		root = { save_scope_as = target_root_country }

	}

	option = {
		name = flavor_mos.52.a
		historical_option = yes

		if = {
			limit = {
				ruler = {
					has_character_modifier = terrible
				}
			}
			add_government_power = government_power_severe_bonus
			custom_tooltip = flavor_mos.52.tt1
		}
		else = {
			add_government_power = government_power_mild_bonus
		}

		add_prestige = prestige_mild_bonus

		ruler = {
			add_character_modifier = imperial_descent
		}

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.52.b

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

		add_religious_influence = religious_influence_severe_bonus

		ai_chance = {
			factor = 0.5
		}
	}

	option = {
		name = flavor_mos.52.c

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_right
		}

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.52.historical_info

}