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.33] 索菲亚·帕列奥罗格娜的婚姻

时间范围

1469.1.1 - 1484.1.1,每月 20% 概率触发

触发条件

  • 国家没有摄政王。
  • 统治者是成年男性且未婚。
  • 拜占庭帝国(BYZ)不存在。
  • 满足以下任一条件:
    • 国家在“鞑靼枷锁”国际组织中拥有“鞑靼税吏”特殊地位。
    • 国家是王国级。

关键效果

选项 A:flavor_mos.33.a(历史选项)

  • 统治者与索菲亚·帕列奥罗格娜结婚。
  • 启用拜占庭宫廷礼仪改革(设置变量 byzantine_court_ceremonies = 1)。
  • 如果国家是“鞑靼枷锁”成员,索菲亚将获得持续一年的“蒙古人敌意”角色修正。
  • AI选择此选项的概率因子为1。

选项 B:flavor_mos.33.b

  • 获得少量威望加成。
  • 索菲亚·帕列奥罗格娜被秘密处决。
  • AI选择此选项的概率因子为0.5。

背景介绍

此事件模拟了莫斯科大公国(或俄罗斯)统治者与拜占庭末代公主索菲亚·帕列奥罗格娜联姻的历史可能性。索菲亚是拜占庭帝国最后一位皇帝君士坦丁十一世的侄女,她的婚姻象征着莫斯科对“第三罗马”地位的宣称,并可能带来拜占庭的文化与政治遗产。事件发生在拜占庭帝国灭亡后,莫斯科寻求提升自身地位并与鞑靼势力周旋的背景下。

完整事件代码

flavor_mos.33 = {
	type = country_event
	fire_only_once = yes
	title = flavor_mos.33.title
	desc = flavor_mos.33.desc
	image = "gfx/interface/illustrations/situation/rise_of_the_ottomans.dds"
	#Or... We can use image = "gfx/interface/illustrations/disaster/decline_of_empire.dds"

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1469.1.1
		to = 1484.1.1
		monthly_chance = 20
	}
	

	trigger = {

		has_regent = no

		ruler = {
			is_adult = yes
			is_female = no
			is_married = no
		}

		NOT = {
			country_exists = c:BYZ
		}

		OR = {
			international_organization:tatar_yoke = {
				country_has_special_status = {
					type = special_status:tatar_tax_collector
					country = root
				}
			}
			country_rank = country_rank:rank_kingdom
		}

	}

	immediate = {

		location:constantinople = {
			save_scope_as = target_location
		}

		c:BYZ.last_valid_ruler.dynasty = {
			random_character_in_dynasty = {
				dynasty = {
					save_scope_as = target_dynasty
				}
			}
		}

		create_character = {
			first_name = name_sophia
			adm = 50
			dip = 71
			mil = 15
			birth_date = 1449.1.1
			fertility = 100
			female = yes
			estate = estate_type:nobles_estate
			dynasty = scope:target_dynasty
			birth_location = location:constantinople
			script = mos_sophia_palaiologina
			save_scope_as = sophia_palaiologina
			create_in_limbo = yes
		}

		root = { save_scope_as = target_root_country }
	}

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

		ruler = {
			hidden_effect = { divorce_character = first_spouse }
			scope:sophia_palaiologina = { move_country = root }
			marry_character = scope:sophia_palaiologina
		}

		custom_tooltip = {
			text = enable_byzantine_court_ceremonies_reform
			set_variable = { name = byzantine_court_ceremonies value = 1 }
		}

		custom_tooltip = flavor_mos.33.tt1

		if = {
			limit = {
				is_member_of_international_organization = international_organization:tatar_yoke
			}
			scope:sophia_palaiologina = {
				add_character_modifier = {
					modifier = mongol_intolerance
					years = -1
					mode = add_and_extend
				}
			}
			custom_tooltip = flavor_mos.33.tt2
		}

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.33.b

		add_prestige = prestige_mild_bonus

		hidden_effect = { kill_character_silently = scope:sophia_palaiologina }

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.33.historical_info

}