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_por.2 大西洋奴隶贸易

时间范围
1450.1.1 - 1550.1.1
每月 5% 概率触发

触发条件

  • 国家拥有至少 3 个 奴隶贸易节点(goods = goods:slaves_goodscount > 2
  • 政府类型为 君主制government_type = government_type:monarchy

关键效果

  • 选项 A(历史选项)
    在所有本国拥有商人的世界市场中,添加持续 240 个月 的临时需求 demand:african_slave_trade_encouraged,需求规模随人口按 0.005 比例缩放。

  • 选项 B
    获得大量政府点数(add_government_power = government_power_extreme_bonus)。

背景介绍
该事件模拟了葡萄牙在 15 世纪至 16 世纪初期参与大西洋奴隶贸易的历史进程。作为最早系统化从事跨大西洋奴隶贸易的欧洲国家之一,葡萄牙在非洲西海岸建立了贸易据点,将奴隶作为重要商品引入其全球贸易网络,这对美洲殖民地的劳动力构成和全球贸易格局产生了深远影响。

完整事件代码

flavor_por.2 = { #Atlantic Slave Trade
	type = country_event
	title = flavor_por.2.title
	desc = flavor_por.2.desc

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = POR
		from = 1450.1.1
		to = 1550.1.1
		monthly_chance = 5
	}

	trigger = {
		any_trade = {
			goods = goods:slaves_goods
			count > 2
		}
		government_type = government_type:monarchy
	}

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

	option = {
		name = flavor_por.2.a
		historical_option = yes

		every_market_in_world = {
			limit = {
				has_merchant = root
			}
			add_temporary_demand = { type = demand:african_slave_trade_encouraged months = 240 scale_with_pop = 0.005 }
		}
	}
	
	option = {
		name = flavor_por.2.b
		add_government_power = government_power_extreme_bonus
	}
	historical_info = flavor_por.2.historical_info
}