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.2007] 中国宝船远航

时间范围
无明确起止日期(事件无 fromto 字段)

触发条件

  • 事件通过 set_chinese_expedition_scopes = yes 设置中国远征相关作用域后触发
  • 若玩家为非AI控制,则立即执行以下效果:
    • 应用贵族阶层背景的事件插图效果
    • 对作用域 expedition_initiator(远征发起者)应用贵族阶层前景的事件插图效果

关键效果

  • 选项 A(名称对应本地化键 flavor_chi.2007.a):
    • 执行 chinese_treasure_depart_from_port = yes,使中国宝船从港口启航

背景介绍
该事件模拟了中国历史上著名的宝船舰队远航。在游戏中,当国家具备组织大规模海上远征的能力时,可能触发此事件,代表一支满载珍宝与使节的船队从本土港口出发,前往未知或已知的远方进行探索、贸易或外交活动。事件插图以贵族阶层为背景,强调了此类远征通常由朝廷与贵族阶层主导,兼具政治威望与经济扩张的双重目的。

完整事件代码

flavor_chi.2007 = {
	type = country_event
	title = flavor_chi.2007.title
	desc = flavor_chi.2007.desc

	immediate = {
		set_chinese_expedition_scopes = yes
		if = {
			limit = {
				is_ai = no
			}
			event_illustration_estate_background_effect = { background = estate_type:nobles_estate }
			scope:expedition_initiator = {
				event_illustration_estate_foreground_effect = { foreground = estate_type:nobles_estate }
			}
		}
		
	}

	illustration_tags = {
		10 = exterior
		10 = happy
	}

	option = {
		name = flavor_chi.2007.a
		
		chinese_treasure_depart_from_port = yes
	}
}