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_eng.233 茶叶贸易危机

时间范围:1773.1.1 - 1800.1.1(每月 5% 概率触发)

触发条件

  • 拥有至少一个殖民领类型(colonial_nation)的附庸国,且其:
    • 首府位于 east_coast_region 地区。
    • 拥有超过10个省份。
    • 其首都市场没有great_britain_region 地区进口 goods:tea(茶叶)。
  • 拥有至少一个贸易公司类型(trade_company)的附庸国,且其:
    • 首都市场生产 goods:tea(茶叶)。
    • 首都位于 south_asia 次大陆。

关键效果

  • 选项 A (历史选项)
    • 社会思潮 mercantilism_vs_free_trade 向左移动(即偏向重商主义)。
    • 对符合条件的美洲殖民领(thirteen_colonies):
      • 添加名为 tea_imports_banned 的国家修正,持续10年(可叠加延长)。
      • 大幅增加其 liberty_desire(独立倾向)。
  • 选项 B
    • 社会思潮 mercantilism_vs_free_trade 向右移动(即偏向自由贸易)。
    • 对符合条件的东印度贸易公司(east_india_trade_company):
      • 添加名为 no_market_for_goods 的国家修正,持续10年(可叠加延长)。

背景介绍: 该事件模拟了18世纪后期大英帝国面临的茶叶贸易困境。一方面,英国东印度公司在南亚(如印度)拥有茶叶生产基地和贸易垄断权;另一方面,其在北美(尤其是东海岸)的殖民领(如十三殖民地)因《航海条例》等重商主义政策限制,无法直接从英国本土以外的市场进口茶叶,导致走私盛行和对母国贸易政策的不满。这一矛盾最终在1773年《茶叶法案》颁布后激化,成为引发波士顿倾茶事件和美国独立战争的重要经济导火索之一。

完整事件代码

flavor_eng.233 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.233.title
	desc = flavor_eng.233.desc

	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_tea.dds"

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1773.1.1
		to = 1800.1.1
		monthly_chance = 5
	}

	trigger = {

		any_subject = {
			is_subject_type = colonial_nation
			capital.region = region:east_coast_region
			any_owned_location = {
				count > 10
			}
			capital.market = {
				NOT = {
					any_import = {
						goods = goods:tea
						from_market.location.region = region:great_britain_region
					}
				}
			}
		}

		any_subject = {
			is_subject_type = trade_company
			capital.market = { is_produced_in_market = goods:tea }
			capital.sub_continent = sub_continent:south_asia
		}

	}

	immediate = {

		random_subject = {
			limit = {
				is_subject_type = trade_company
				capital.market = { is_produced_in_market = goods:tea }
				capital.sub_continent = sub_continent:south_asia
			}
			capital = { save_scope_as = east_india_trade_company }
		}

		random_subject = {
			limit = {
				is_subject_type = colonial_nation
				capital.region = region:east_coast_region
				capital.market = {
					NOT = {
						any_import = {
							goods = goods:tea
							from_market.location.region = region:great_britain_region
						}
					}
				}
			}
			save_scope_as = thirteen_colonies
		}

	}

	option = {
		name = flavor_eng.233.a
		historical_option = yes

		change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_move_to_left }

		scope:thirteen_colonies = {

			add_country_modifier = {
				modifier = tea_imports_banned
				years = 10
				mode = add_and_extend
			}

			add_liberty_desire = liberty_desire_severe_plus

		}

	}

	option = {
		name = flavor_eng.233.b

		change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_move_to_right }

		scope:east_india_trade_company = {

			add_country_modifier = {
				modifier = no_market_for_goods
				years = 10
				mode = add_and_extend
			}

		}

	}

	historical_info = flavor_eng.233.historical_info

}