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.8] 外国商人在华贸易

时间范围:1760.1.1 - 1800.1.1(每月 5% 概率)

触发条件

  • 本国任意市场存在来自 大不列颠 (GBR)英格兰 (ENG) 的商人。
  • 同时满足以下条件之一:
    • 国家 大不列颠 (GBR) 存在,且其满足 flavor_chi.15_foreign_country_trigger 条件。
    • 国家 英格兰 (ENG) 存在,且其满足 flavor_chi.15_foreign_country_trigger 条件。

关键效果

  • 选项 A (flavor_chi.8.a) - 历史选项

    • 获得 stability_severe_bonus(大幅增加稳定度)。
    • 如果拥有 allow_righteousness 修正,则获得 righteousness_weak_penalty(小幅减少正义值)。
    • 如果是“中央王国”国际组织的领导者,则获得 celestial_authority_weak_bonus(小幅增加天命值)。
    • 如果拥有 allow_harmony 修正,则获得 harmony_weak_penalty(小幅减少和谐值)。
  • 选项 B (flavor_chi.8.b)

    • 获得 research_progress_severe_bonus(大幅增加研究进度)。
    • 如果 大不列颠 (GBR) 存在,则其对本国增加 opinion_ideas 好感度修正。
    • 如果 英格兰 (ENG) 存在,则其对本国增加 opinion_ideas 好感度修正。
    • 如果拥有 allow_harmony 修正,则触发 harmony_mild_towards_equilibrium(和谐值小幅向均衡值调整)。

背景介绍: 此事件反映了18世纪下半叶(1760-1800年)欧洲国家,特别是英国(以“大不列颠”或“英格兰”形式出现)的商人在中国进行贸易活动的历史背景。这一时期正值清朝乾隆中后期,广州“一口通商”制度下,外国商人的活动受到严格管控。事件模拟了清政府面对外国商业势力时的两种政策选择:一是采取传统管控措施以维护稳定与秩序(历史选项),二是尝试通过技术交流与合作来获取实际利益。

完整事件代码

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1760.1.1
		to = 1800.1.1
		monthly_chance = 5
	}

	trigger = {
		any_market_present_in_country = {
			OR = {
				has_merchant = c:GBR
				has_merchant = c:ENG
			}
		}
		OR = {
			AND = {
				country_exists = c:GBR
				c:GBR = { flavor_chi.15_foreign_country_trigger = yes }
			}
			AND = {
				country_exists = c:ENG
				c:ENG = { flavor_chi.15_foreign_country_trigger = yes }
			}
		}
	}

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		if = {
			limit = { country_exists = c:GBR }
			c:GBR = { flavor_chi.15_foreign_country_saving_scopes_effect = yes }
		}
		else = {
			c:ENG = { flavor_chi.15_foreign_country_saving_scopes_effect = yes }
		}
	}

	option = {
		name = flavor_chi.8.a
		historical_option = yes
		add_stability = stability_severe_bonus
		if = {
			limit = { modifier:allow_righteousness = yes }
			add_righteousness = righteousness_weak_penalty
		}
		if = {
			limit = { is_leader_of_international_organization = international_organization:middle_kingdom }
			change_celestial_authority = { value = celestial_authority_weak_bonus }
		}
		if = {
			limit = { modifier:allow_harmony = yes }
			add_harmony = harmony_weak_penalty
		}
	}
	option = {
		name = flavor_chi.8.b
		add_research_progress = research_progress_severe_bonus
		c:GBR ?= {
			add_opinion = { target = root modifier = opinion_ideas }
		}
		c:ENG ?= {
			add_opinion = { target = root modifier = opinion_ideas }
		}
		if = {
			limit = { modifier:allow_harmony = yes }
			harmony_mild_towards_equilibrium = yes
		}
	}
}