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_eth.81] 来自埃塞俄比亚的信件

时间范围
无明确 fromto 日期限制,事件触发概率未指定(monthly_chance 未定义)。

触发条件
事件代码中未包含 trigger 字段,具体触发条件需参考游戏内其他相关机制或事件链。

关键效果

  • 选项 A (flavor_eth.81.a):
    获得少量威望加成 (add_prestige = prestige_weak_bonus),并触发埃塞俄比亚(ETH)的后续事件 flavor_eth.83

  • 选项 B (flavor_eth.81.b):
    受到轻微威望惩罚 (add_prestige = prestige_mild_penalty),埃塞俄比亚(ETH)对马穆鲁克(MAM)改善关系意见 (add_opinion = { target = c:MAM modifier = opinion_improved_relations }),并触发埃塞俄比亚的后续事件 flavor_eth.84

背景介绍
该事件模拟了埃塞俄比亚与马穆鲁克苏丹国之间的外交互动。一封来自埃塞俄比亚的信件抵达,可能涉及外交提议、求援或信息传递,玩家需选择如何回应,不同选择将影响国家威望、双边关系并触发不同的后续事件。

完整事件代码

flavor_eth.81 = { #A letter arrives from Ethiopia.
	hide_portraits = yes
	type = country_event
	title = flavor_eth.81.title
	desc = flavor_eth.81.desc
	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		save_scope_as = target_mam
		ruler_or_regent = { save_scope_as = target_mam_ruler }
	}

	option = {
		name = flavor_eth.81.a
		add_prestige = prestige_weak_bonus
		c:ETH = {
			trigger_event_silently = { id = flavor_eth.83 }
		}
	}
	option = {
		name = flavor_eth.81.b
		add_prestige = prestige_mild_penalty
		c:ETH = {
			add_opinion = { target = c:MAM modifier = opinion_improved_relations }
		}
		c:ETH = {
			trigger_event_silently = { id = flavor_eth.84 }
		}
	}
}