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_byz.1202 事件名(基于标题占位符推测为“拜占庭内部事件”)

时间范围

  • 触发时间范围:未在代码中明确指定 fromto 字段,因此事件可在游戏期间任意时间触发。
  • 触发概率:未设置 monthly_chance,事件为一次性触发(fire_only_once = yes)。

触发条件

  • 事件为一次性国家事件(type = country_event),仅能触发一次(fire_only_once = yes)。
  • 未在代码中明确指定 trigger 字段,因此无额外触发条件限制。

关键效果

  • 选项 A(名称占位符:flavor_byz.1202.a):
    • 增加国家威望:add_prestige = prestige_mild_bonus(具体数值由游戏内 prestige_mild_bonus 定义决定)。
    • 未标记为历史选项(无 historical_option = yes)。

背景介绍

该事件为拜占庭帝国的内部事件,涉及贵族阶层(estate_type:nobles_estate)的影响。事件中提及了两位历史人物:拜占庭的狄奥多拉·坎塔库泽娜(character:byz_theodora_kantakouzene)和奥斯曼帝国的奥尔汗(character:tur_orhan),暗示了拜占庭与奥斯曼帝国之间的互动或内部政治联姻的可能性。事件旨在反映拜占庭帝国在面临外部压力时,通过贵族支持来提升国家威望的内部决策。

完整事件代码

flavor_byz.1202 = { #
	type = country_event
	title = flavor_byz.1202.title
	desc = flavor_byz.1202.desc

	fire_only_once = yes
	illustration_tags = {
		10 = happy
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		character:byz_theodora_kantakouzene ?= {
			save_scope_as = theodora_scope
		}
		character:tur_orhan ?= {
			save_scope_as = orhan_scope
		}
	}

	option = {
		name = flavor_byz.1202.a
		add_prestige = prestige_mild_bonus
	}
}