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.2005] 中国远征队互动

时间范围
事件为动态历史事件,无固定 fromto 日期,触发概率由游戏系统动态控制。

触发条件

  • 事件类型为国家事件(type = country_event)。
  • 事件触发时,会执行 set_chinese_expedition_scopes = yes 以设置中国远征队相关的作用域。
  • 若玩家为非AI(is_ai = no),则会在事件插图中应用贵族阶层背景,并对 expedition_initiator(远征发起者)应用贵族阶层前景。

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

  1. 选项 A(名称:flavor_chi.2005.a)

    • AI 选择权重基础为 100,并乘以 chinese_expedition_positive_ai_weight 调整。
    • 若国家拥有社会价值 sinicized_vs_unsinicized(汉化 vs 非汉化),则将该社会价值大幅向左移动(即向“汉化”方向调整)。
    • 执行 increase_opinion_of_expedition = yes,提升对远征队的看法。
  2. 选项 B(名称:flavor_chi.2005.b)

    • AI 选择权重基础为 100,并乘以 chinese_expedition_very_negative_ai_weight 调整。
    • 执行 decrease_opinion_of_expedition_greatly = yes,大幅降低对远征队的看法。
    • expedition_initiator(远征发起者)添加相互看法修正 chi_refused_tributary_status

事件后续
事件结束后,会静默触发后续事件 flavor_chi.2006

背景介绍
该事件模拟了中国历史上对外远征或使团互动中的一个决策时刻。国家需要选择如何回应远征发起者的行动:是采取友好态度,推动文化上的“汉化”进程并改善关系;还是坚决拒绝,导致关系急剧恶化并可能引发外交上的长期负面影响。这反映了古代中国在对外交往中,如何在文化影响、外交策略与主权尊严之间进行权衡。

完整事件代码

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

	illustration_tags = {
		10 = interior
		10 = armed
	}

	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 }
			}
		}
	}

	option = {
		name = flavor_chi.2005.a

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_positive_ai_weight
				}
			}
		}
		
		if = {
			limit = {
				has_societal_value = societal_value_type:sinicized_vs_unsinicized
			}
			change_societal_value = {
				type = sinicized_vs_unsinicized
				value = societal_value_large_move_to_left
			}
		}

		increase_opinion_of_expedition = yes
	}

	option = {
		name = flavor_chi.2005.b

		ai_chance = {
			factor = 100
			modifier = {
				factor = {
					value = 1
					multiply = chinese_expedition_very_negative_ai_weight
				}
			}
		}
		
		decrease_opinion_of_expedition_greatly = yes
		add_opinion_mutual_effect = {
			modifier = chi_refused_tributary_status
			target = scope:expedition_initiator
		}
	}

	after = {
		trigger_event_silently = {
			id = flavor_chi.2006
		}
	}
}