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_chi.81] 关键人物登场

时间范围
无明确起止日期(from/to未定义),事件在满足触发条件后可能发生。

触发条件

  • 目标人物(scope:target_character)必须存活(is_alive = yes)。
  • 主要触发条件(major_trigger):当前国家(this)必须是远征发起国(scope:expedition_country)。

关键效果

  • 选项 A(flavor_chi.81.a)
    • 使当前国家成为远征发起国(scope:expedition_country)的朝贡国(subject_type:tributary)。
    • 增加少量正统性(add_legitimacy = legitimacy_mild_bonus)。
  • 选项 B(flavor_chi.81.b)
    • 远征发起国(scope:expedition_country)获得对当前国家的“建立朝贡关系”宣战理由(casus_belli:cb_make_tributary)。
    • 增加大量威望(add_prestige = prestige_severe_bonus)。

背景介绍
该事件涉及一位关键人物的命运抉择,可能发生在远征或外交任务中。当一位重要人物(如使节、将领或贵族)在异国他乡面临政治压力时,其所属国家需决定是接受朝贡地位以换取稳定,还是坚持独立并承担外交风险。事件反映了中世纪至近代外交中,强国通过朝贡体系扩展影响力,而弱国则在屈服与反抗间权衡的常见情境。

完整事件代码

flavor_chi.81 = {
	type = country_event
	title = flavor_chi.81.title
	desc = flavor_chi.81.desc
	major = yes

	major_trigger = {
		this = scope:expedition_country
	}

	trigger = {
		scope:target_character = {
			is_alive = yes
		}
	}
	
	illustration_tags = {
		10 = angry
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	option = {
		name = flavor_chi.81.a

		make_subject_of = {
			target = scope:expedition_country
			type = subject_type:tributary
		}
		add_legitimacy = legitimacy_mild_bonus
	}

	option = {
		name = flavor_chi.81.b

		scope:expedition_country = {
			add_casus_belli = {
				target = ROOT
				type = casus_belli:cb_make_tributary
			}
		}
		add_prestige = prestige_severe_bonus
	}
}