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.89 干预克里米亚

时间范围:1437.1.1 - 1637.1.1,每月 5% 概率触发

触发条件

  • 存在一个对克里米亚地区构成威胁的合适对手国家(满足 is_suitable_rival_for_crimea 条件)。
  • 克里米亚地区(crimea_area)中至少有一个省份的拥有者不是奥斯曼帝国(TUR)。
  • 克里米亚地区中存在一个合适的对手,其拥有者满足以下任一条件:
    • 国家等级低于 3 级,且政府类型不是部落(government_type:tribe)。
    • 是热那亚(GEN)或威尼斯(VEN)。
  • 克里米亚地区中至少有一个省份的主流文化属于鞑靼文化组(culture_group:tatar_group)。

关键效果

  • 选项 A (flavor_tur.89.a) - 历史选项
    • 对目标国家(target_country)就克里米亚特定省份(crimea_location.province)获得“征服省份”宣战理由(casus_belli:cb_conquer_province)。
    • 损失一定数量的金钱(change_gold_effect = { scale = -1 })。
    • 增加相当于 4 个月收入水平的水手数量(add_sailors = { value = root.monthly_sailors multiply = 4 })。
  • 选项 B (flavor_tur.89.b)
    • 触发前提:目标国家对奥斯曼帝国的看法超过 50 点,或两国是盟友。
    • 获得少量威望(prestige_mild_bonus)。
    • 目标国家对奥斯曼帝国的看法增加(获得 opinion_good_relations 修正)。
  • 选项 C (flavor_tur.89.c)
    • 获得少量稳定度(stability_weak_bonus)。

背景介绍: 此事件模拟了奥斯曼帝国在 15 至 17 世纪期间对克里米亚半岛事务的潜在干预。克里米亚地处黑海北岸,战略位置重要,长期是周边势力(如热那亚、威尼斯、各草原汗国及东欧国家)的争夺焦点。奥斯曼帝国作为区域强权,关注着该地区的势力平衡,尤其是鞑靼人的生存状态以及是否存在对其构成威胁的对手。事件为奥斯曼帝国提供了介入克里米亚局势的契机,可以选择军事征服、外交安抚或专注于内部稳定等不同策略。

完整事件代码

flavor_tur.89 = { #Intervention in Crimea
	type = country_event
	title = flavor_tur.89.title
	desc = flavor_tur.89.desc

	historical_info = flavor_tur.89.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1437.1.1
		to = 1637.1.1
		monthly_chance = 5
	}

	trigger = {

		any_country = { #checking that there is a threat to motivate an invasion
			is_suitable_rival_for_crimea = yes
		}

		area:crimea_area = { #checking that we don't already have a presence in Crimea
			any_location_in_area = {
				NOT = {
					owner = c:TUR
				}
			}
		}

		area:crimea_area = { #checking for a suitable adversary in Crimea
			any_location_in_area = {
				has_owner = yes
				OR = {
					AND = {
						owner = { country_rank_level < 3 }
						NOT = {
							owner = {
								government_type = government_type:tribe
							}
						}
					}
					owner = c:GEN
					owner = c:VEN
				}
				save_temporary_scope_as = crimean_colonist
			}
		}


		area:crimea_area = { #checking that the Crimean tatars still exists
			any_location_in_area = {
				dominant_culture ?= { has_culture_group = culture_group:tatar_group }
			}
		}
	}

	immediate = {

		area:crimea_area = { #saving the adversary for the Crimeans
			random_location_in_area = {
				limit = {
					has_owner = yes
					OR = {
						AND = {
							owner = { country_rank_level < 3 }
							NOT = {
								owner = {
									government_type = government_type:tribe
								}
							}
						}
						owner = c:GEN
						owner = c:VEN
					}
				}
				save_scope_as = crimea_location
			}
		}

		scope:crimea_location = {
			owner = {
				save_scope_as = target_country
			}
		}

		ordered_country = {
			limit = {
				is_suitable_rival_for_crimea = yes
			}
			order_by = {
				capital = {
					value = "distance_to_squared(location:kaffa)"
            		multiply = -1
				}
			}
			save_scope_as = rival_country
		}
	}

	option = {
		name = flavor_tur.89.a

		historical_option = yes

  		add_casus_belli = { target = scope:target_country type = casus_belli:cb_conquer_province province = scope:crimea_location.province }

		change_gold_effect = { scale = -1 }

		add_sailors = { value = root.monthly_sailors multiply = 4 }
	}

	option = {
		name = flavor_tur.89.b

		trigger = {

			scope:target_country = {
				OR = {
					opinion = { target = root value > 50 }
					is_allied_with = { target = root }
				}
			}
		}

		add_prestige = prestige_mild_bonus

		scope:target_country = {
			add_opinion = { target = root modifier = opinion_good_relations  }
		}
	}

	option = {
		name = flavor_tur.89.c

		add_stability = stability_weak_bonus
	}
}