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_tur.63 罗马的凯撒

时间范围:1437.1.1 - 1537.1.1,每月 50% 概率触发

触发条件

  • 拜占庭帝国(BYZ)不存在。
  • 本国拥有君士坦丁堡(Constantinople)地区。
  • 本国拥有统治者。

关键效果

  • 选项 A (历史选项)
    • 为本国统治者添加一个名为 emperor_of_rome 的修正,持续时间为永久(years = -1mode = add_and_extend)。
    • 如果教皇国(PAP)存在且本国宗教不是天主教,则教皇国将对本国产生 opinion_refused_claim 负面看法。
    • 如果神圣罗马帝国(HRE)存在且拥有领导国,则该领导国将对本国产生 opinion_refused_claim 负面看法。
    • 如果俄罗斯(RUS)存在,则俄罗斯将对本国产生 opinion_refused_claim 负面看法。
  • 选项 B
    • 获得大量威望(prestige_severe_bonus)。

背景介绍: 1453年,奥斯曼帝国苏丹穆罕默德二世攻陷君士坦丁堡,终结了延续千年的东罗马帝国。此后,奥斯曼统治者开始宣称自己是罗马帝国的合法继承者,即“罗马的凯撒”(Kayser-i Rûm)。这一称号不仅象征着对前帝国领土和遗产的占有,也代表着奥斯曼苏丹对基督教世界最高世俗统治权的觊觎。该事件模拟了奥斯曼帝国在占领君士坦丁堡后,其统治者正式采用罗马皇帝头衔的历史进程,以及这一宣称在欧洲其他主要势力(如教皇、神圣罗马帝国皇帝、俄罗斯沙皇)中引发的政治反应和外交紧张。

完整事件代码

flavor_tur.63 = { #The Caesar of Rome
	hide_portraits = yes
	type = country_event
	title = flavor_tur.63.title
	desc = flavor_tur.63.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1437.1.1
		to = 1537.1.1
		monthly_chance = 50
	}

	historical_info = flavor_tur.63.historical_info


	trigger = {

		NOT = {
			country_exists = c:BYZ
		}

		owns = location:constantinople

		has_ruler = yes
	}

	immediate = {
		root.ruler = { save_scope_as = ruler }
	}

	option = {
		name = flavor_tur.63.a
		historical_option = yes

		root.ruler = {
			add_character_modifier = {
				modifier = emperor_of_rome
				years = -1
				mode = add_and_extend
			}
		}

		if = {
			limit = {
 				country_exists = c:PAP
 				NOT = { religion = religion:catholic }
			}
			c:PAP = {
				add_opinion = { target = root modifier = opinion_refused_claim  }
			}
		}
		if = {
			limit = {
 				exists = international_organization:hre.leader_country
			}
			international_organization:hre.leader_country = {
				add_opinion = { target = root modifier = opinion_refused_claim  }
			}
		}
		if = {
			limit = {
 				country_exists = c:RUS
			}
			c:RUS = {
				add_opinion = { target = root modifier = opinion_refused_claim  }
			}
		}
	}
	option = {
		name = flavor_tur.63.b

		add_prestige = prestige_severe_bonus
	}
}