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_mor.1100] 摩洛哥的蔗糖种植园与奴隶贸易

时间范围: 1600.1.1 - 1821.1.1 (每月 2% 概率)

触发条件:

  • 本国拥有位于 马格里布地区 (region:maghreb_region) 且原材料为 蔗糖 (goods:sugar) 的任意省份。
  • 存在任意已知国家,其满足:
    • 国内 奴隶 (pop_type:slaves) 人口数量超过 5。
    • 其首都位于 几内亚地区 (region:guinea_region)
    • 其首都所在市场生产 奴隶商品 (goods:slaves_goods)

关键效果:

  • 选项 A (flavor_mor.1100.a):
    • 触发一个持续120个月的迁移事件:每年有 5% 的奴隶人口从 目标国家 (target_country)目标省份 (target_location) 迁移至本国在 马格里布地区目标蔗糖省份 (target_location2)
    • 每年向 目标国家 (target_country) 支付 1 金币。
    • 目标国家 (target_country) 静默触发事件 flavor_mor.1101
    • 显示自定义提示 mor_they_must_accept_offer_tt
  • 选项 B (flavor_mor.1100.b):
    • 显示自定义提示 mor_no_slave_purchase_tt
    • 社会价值观 好战 vs 和解 (belligerent_vs_conciliatory) 向左侧(和解方向)发生小幅移动。

背景介绍: 在17至19世纪,随着美洲和欧洲对蔗糖需求的激增,北非马格里布地区(特别是摩洛哥)也开始发展蔗糖种植园。这催生了对劳动力的巨大需求。与此同时,西非几内亚地区的国家正活跃于跨撒哈拉奴隶贸易。本事件模拟了摩洛哥统治者可能面临的选择:是否从西非的奴隶贩运国家购买奴隶劳动力,以发展本国的蔗糖产业。这一选择不仅关乎经济利益,也涉及道德立场和国际关系。

完整事件代码:

flavor_mor.1100 = {
	type = country_event
	title = flavor_mor.1100.title
	desc = flavor_mor.1100.desc

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

	dynamic_historical_event = {
		tag = MOR
		from = 1600.1.1
		to = 1821.1.1
		monthly_chance = 2
	}
	fire_only_once = yes

	illustration_tags = {
		10 = exterior
		10 = regular
	}

	trigger = {
		any_owned_location = {
			region = region:maghreb_region
			raw_material = goods:sugar
		}

		any_known_country = {
			num_pop_type_in_country:slaves > 5
			capital ?= {
				region = region:guinea_region
				market ?= {
					is_produced_in_market = goods:slaves_goods
				}
			}
		}
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:slaves   background = pop_type:slaves }

		save_scope_as = prev_country

		random_known_country = {
			limit = {
				num_pop_type_in_country:slaves > 5
				capital ?= {
					region = region:guinea_region
					market ?= {
						is_produced_in_market = goods:slaves_goods
					}
				}
			}

			save_scope_as = target_country

			ordered_owned_location = {
				order_by = population
				max = 1
				limit = {
					any_pop = {
						pop_type = pop_type:slaves
					}
				}
				save_scope_as = target_location
			}
		}

		ordered_owned_location = {
			order_by = development
			max = 1
			limit = {
				region = region:maghreb_region
				raw_material = goods:sugar
			}
			save_scope_as = target_location2
		}

		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mor.1100.a

		show_as_tooltip = {
			add_migration = {
				amount = 0.05
				months = 120
				from = scope:target_location.province_definition
				owner = scope:target_country
				to = scope:target_location2
				type = pop_type:slaves
			}

			transfer_yearly_gold = {
				target = scope:target_country
				value = 1
			}
		}

		scope:target_country = {
			trigger_event_silently = flavor_mor.1101
		}

		custom_tooltip = mor_they_must_accept_offer_tt
	}

	option = {
		name = flavor_mor.1100.b

		custom_tooltip = mor_no_slave_purchase_tt

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_minor_move_to_left
		}
	}
}