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.1101] 奴隶贸易协定

时间范围
事件为动态历史事件,无固定 fromto 日期。
触发概率
事件未设置 monthly_chance,触发条件由游戏动态判定。

触发条件

  • 事件为 major(重大事件),其 major_trigger 要求:this = scope:prev_country(即当前作用域国家需等于先前作用域国家 prev_country)。

关键效果
选项 A:flavor_mor.1101.a

  • 启动为期 120 个月的奴隶迁移:
    • 迁移类型:奴隶(pop_type:slaves
    • 迁移量:每月 0.05
    • 迁移路径:从 target_location 省份迁移至 target_location2
    • 迁移所有者:当前国家(root
  • prev_country 每年向当前国家(root)转移 1 单位黄金。

选项 B:flavor_mor.1101.b

  • 当前国家与 prev_country 互相添加观点修正:mor_rejected_slave_force

背景介绍
该事件模拟了历史上摩洛哥或其周边地区可能涉及的奴隶贸易协定。选项 A 代表接受奴隶贸易,获取奴隶劳动力与黄金收益;选项 B 代表拒绝强制奴隶贸易,可能影响两国关系。事件反映了该地区在特定历史时期对奴隶贸易的经济与外交抉择。

完整事件代码

flavor_mor.1101 = {
	type = country_event
	title = flavor_mor.1101.title
	desc = flavor_mor.1101.desc
	major = yes
	major_trigger = {
		this = scope:prev_country
	}

	illustration_tags = {
		10 = exterior
		10 = regular
	}

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

	option = {
		name = flavor_mor.1101.a

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

		scope:prev_country = {
			transfer_yearly_gold = {
				target = root
				value = 1
			}
		}
	}

	option = {
		name = flavor_mor.1101.b

		add_opinion_mutual_effect = {
			modifier = mor_rejected_slave_force
			target = scope:prev_country
		}
	}
}