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.43 英国使团访华

时间范围

  • 触发窗口:1792年1月1日 - 1806年1月1日
  • 触发概率:每月 25% 概率

触发条件

  • 必须满足以下条件之一:
    1. 国家 ENG 存在。
    2. 国家 GBR 存在,且其主流文化为 english
  • 必须已通过 set_british_target = yes 机制设定了一个“英国目标国”。
  • 该“英国目标国”必须已发现玩家国家(root)的首都。

关键效果

选项 A

  • 改变社会价值观:outward_vs_inward 向“右”移动(更倾向于外向)。
  • 增加少量稳定度。
  • 隐藏效果:静默处决在事件 immediate 阶段创建的名为 George Mac Carthaigh 的人物。

选项 B

  • 获得大量研究进度。
  • 对“目标国”(target_country)添加 chi_accepted_mission 好感度修正。
  • 隐藏效果:将在事件 immediate 阶段创建的名为 George Mac Carthaigh 的人物移动至玩家国家。

背景介绍

此事件模拟了18世纪末至19世纪初,英国(或代表英国利益的实体)试图向中国派遣外交或贸易使团的历史背景。这一时期,以马戛尔尼使团(1793年)和阿美士德使团(1816年)最为著名,英国希望打开中国市场,建立正式外交关系。事件反映了清政府面临外部压力时,在坚持传统朝贡体系与有限开放、接受西方技术及观念之间的抉择。

完整事件代码

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1792.1.1
		to = 1806.1.1
		monthly_chance = 25
	}

	illustration_tags = {
		10 = interior
		10 = regular
	}

	trigger = {
		OR = {
			country_exists = c:ENG
			AND = {
				tag_exists = GBR
				country_exists = c:GBR
				c:GBR = { culture = culture:english }
			}
		}

		set_british_target = yes

		scope:british_target = {
			has_discovered = root.capital
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:nobles_estate }
		set_british_target_effect = yes

		create_character = {
			estate = estate_type:nobles_estate
			first_name = name_george
			dynasty = dynasty:mac_carthaigh_dynasty
			birth_date = 1737.5.14
			birth_location = location:kirkcudbright
			adm = { 20 30 }
			dip = { 50 70 }
			mil = { 40 50 }
			create_in_limbo = yes
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_chi.43.a

		change_societal_value = {
			type = outward_vs_inward
			value = societal_value_move_to_right
		}

		add_stability = stability_mild_bonus

		hidden_effect = {
			kill_character_silently = {
				target = scope:target_character
			}
		}
	}

	option = {
		name = flavor_chi.43.b

		add_research_progress = research_progress_severe_bonus
		add_opinion = {
			modifier = chi_accepted_mission
			target = scope:target_country
		}

		scope:target_character = {
			move_country = ROOT
		}
	}
}