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_pap.1801 奥斯曼与罗马皇冠 - 奥斯曼事件

时间范围
事件可触发时间范围:无明确 fromto 日期限制。
触发概率:无 monthly_chance 设置,为一次性事件(fire_only_once = yes)。

触发条件
事件代码中未明确指定 trigger 字段,因此无特定触发条件。该事件通常由其他事件(如 flavor_pap.1800)或游戏机制触发。

关键效果
事件提供两个选项:

  • 选项 A(历史选项)

    • 名称:flavor_pap.1801.a
    • AI 选择概率:99%
    • 效果:
      • 获得少量威望(prestige_mild_bonus
      • 若存在国家 PAP(教宗国),则为其触发事件 flavor_pap.1802
  • 选项 B

    • 名称:flavor_pap.1801.b
    • AI 选择概率:1%
    • 效果:
      • 遭受极大威望惩罚(prestige_extreme_penalty
      • 遭受极大稳定度惩罚(stability_extreme_penalty
      • 国家宗教改为天主教(religion:catholic
      • 统治者及其家族宗教改为天主教
      • 所有外交范围内的穆斯林国家对本国的看法降低(修正:opinion_tur_betrayed_the_true_faith
      • 所有外交范围内的基督教国家对本国的看法提升(修正:opinion_tur_embraced_the_true_faith
      • 若存在国家 PAP(教宗国),则为其触发事件 flavor_pap.1803

背景介绍
该事件描绘了奥斯曼帝国在征服君士坦丁堡后,面对罗马帝国遗产与基督教世界关系的抉择。历史上,奥斯曼苏丹曾考虑宣称罗马皇帝的头衔,并试图与教宗国建立联系,以巩固其在地中海世界的合法性。此事件反映了奥斯曼帝国在宗教、政治与外交上的复杂处境,以及其统治者对“罗马皇冠”象征意义的权衡。

完整事件代码

flavor_pap.1801 = { #The Ottomans and the Crown of Rome - Ottoman event
	hide_portraits = yes
	type = country_event
	title = flavor_pap.1801.title
	desc = flavor_pap.1801.desc

	fire_only_once = yes

	historical_info = flavor_pap.1800.historical_info

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		c:PAP = {
			ruler = {
				save_scope_as = pope_ruler
			}
		}
	}

	option = {
		name = flavor_pap.1801.a
		ai_chance = { factor = 99 }
		historical_option = yes
		add_prestige = prestige_mild_bonus
		c:PAP ?= {
			trigger_event_non_silently = flavor_pap.1802
		}
	}

	option = {
		name = flavor_pap.1801.b
		ai_chance = { factor = 1 }
		add_prestige = prestige_extreme_penalty
		add_stability = stability_extreme_penalty
		change_religion = religion:catholic
		change_religion_for_ruler_and_family = { country = ROOT religion = religion:catholic }
		custom_tooltip = {
			text = suffer_100_opinion_with_every_muslim_in_range_tt
			every_known_country = {
				limit = {
					within_diplomatic_range = root
					religion.group = religion_group:muslim
				}
				add_opinion = {
					modifier = opinion_tur_betrayed_the_true_faith
					target = root
				}
			}
		}
		custom_tooltip = {
			text = gain_50_opinion_with_every_christian_in_range_tt
			every_known_country = {
				limit = {
					within_diplomatic_range = root
					religion.group = religion_group:christian
				}
				add_opinion = {
					modifier = opinion_tur_embraced_the_true_faith
					target = root
				}
			}
		}
		c:PAP ?= {
			trigger_event_non_silently = flavor_pap.1803
		}
	}
}