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_tur.90 确保奴隶贸易

时间范围

1400.1.1 - 1700.1.1,每月 15% 概率触发。

触发条件

  • 国家 TUR 必须存在。
  • 国家必须拥有 奴隶制
  • 克里米亚地区 中至少有一个省份的所有者是 TUR
  • 存在一个邻国满足以下任一条件:
    • 克里米亚汗国
    • 准克里米亚汗国

关键效果

选项 A (历史选项)

  • 花费 3 倍规模的金钱。
  • 损失相当于 12 个月月度人力的人力。
  • 首都市场添加一个持续 48 个月的临时需求 demand:crimean_slave_trade_encouraged
  • 根据邻国(克里米亚国家)对 TUR 的好感度,有不同概率使其成为 TUR 的附庸国:
    • 好感度 > 50 且是克里米亚汗国:100% 概率。
    • 好感度 > 25 且是克里米亚汗国:75% 概率。
    • 好感度 > 25:60% 概率。
    • 好感度 > 0:25% 概率。
    • 其他情况:10% 概率。

选项 B

  • 获得对邻国(克里米亚国家)的 吞并宣战理由

选项 C

  • 获得 少量稳定度加成

背景介绍

该事件模拟了奥斯曼帝国(TUR)在1400年至1700年间,为巩固其在黑海地区的势力并确保奴隶贸易路线的安全,与克里米亚汗国及其相关政权进行的互动。奥斯曼帝国通过在克里米亚地区建立存在,并利用当地政权进行奴隶贸易,是其扩张和维持经济资源的重要手段。此事件反映了奥斯曼帝国通过外交(使其附庸)或军事手段(获得宣战理由)来控制该关键地区的策略选择。

完整事件代码

flavor_tur.90 = { #Securing the Slave Trade
	type = country_event
	title = flavor_tur.90.title
	desc = flavor_tur.90.desc

	historical_info = flavor_tur.90.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1400.1.1
		to = 1700.1.1
		monthly_chance = 15
	}

	trigger = {
		country_exists = c:TUR
		has_slavery = yes #the conflict for Crimea doesn't make sense otherwise
		area:crimea_area = { #checking that we have a presence in Crimea
			any_location_in_area = {
				owner ?= c:TUR
			}
		}

		OR = { #checking that the Crimean tatars still exists
			any_neighbor_country = {
				is_crimean_khanate = yes
			}
			any_neighbor_country = {
				is_almost_crimean_khanate = yes
			}
		}
	}

	immediate = {


		if = {
			limit = {
				any_neighbor_country = {
					is_crimean_khanate = yes
				}
			}
			random_neighbor_country = {
				limit = {
					is_crimean_khanate = yes
				}
				save_scope_as = crimean_country
			}
		}
		else = {
			random_neighbor_country = {
				limit = {
					is_almost_crimean_khanate = yes
				}
				save_scope_as = crimean_country
			}
		}
	}

	option = {
		name = flavor_tur.90.a
		historical_option = yes

		change_gold_effect = { scale = -3 }

		add_manpower = { value = root.monthly_manpower multiply = -12 }

		capital.market = {
			add_temporary_demand = {
				type = demand:crimean_slave_trade_encouraged
				months = 48
			}
		}


		if = {
			limit = {
				scope:crimean_country = {
					opinion = { target = root value > 50 }
					is_crimean_khanate = yes
				}
			}
			custom_tooltip = crimean_vassalage_guaranteed_chance_tooltip
			scope:crimean_country = {
				make_subject_of = { target = c:TUR type = subject_type:vassal }
			}
		}
		else_if = {
			limit = {
				scope:crimean_country = {
					opinion = { target = root value > 25 }
					is_crimean_khanate = yes
				}
			}
			custom_tooltip = crimean_vassalage_decent_chance_tooltip
			random = {
				chance = 75
				scope:crimean_country = {
					make_subject_of = { target = c:TUR type = subject_type:vassal }
				}
			}
		}
		else_if = {
			limit = {
				scope:crimean_country = {
					opinion = { target = root value > 25 }
				}
			}
			custom_tooltip = crimean_vassalage_decent_chance_tooltip
			random = {
				chance = 60
				scope:crimean_country = {
					make_subject_of = { target = c:TUR type = subject_type:vassal }
				}
			}
		}
		else_if = {
			limit = {
				scope:crimean_country = {
					opinion = { target = root value > 0 }
				}
			}
			custom_tooltip = crimean_vassalage_low_chance_tooltip
			random = {
				chance = 25
				scope:crimean_country = {
					make_subject_of = { target = c:TUR type = subject_type:vassal }
				}
			}
		}
		else = {
			custom_tooltip = crimean_vassalage_very_low_chance_tooltip
			random = {
				chance = 10
				scope:crimean_country = {
					make_subject_of = { target = c:TUR type = subject_type:vassal }
				}
			}
		}

	}

	option = {
		name = flavor_tur.90.b

		add_casus_belli = {	target = scope:crimean_country	type = casus_belli:cb_annex	}
	}

	option = {
		name = flavor_tur.90.c

		add_stability = stability_weak_bonus
	}
}