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_mos.39 克里米亚鞑靼人的威胁

时间范围:1482.1.1 - 1542.1.1,每月 1% 概率触发

触发条件

  • 存在任意邻国满足以下所有条件:
    • 主流文化为 culture:crimean(克里米亚文化)
    • 不是本国的盟友
    • 拥有 steppe_slave_raiding(草原奴隶劫掠)科技

关键效果

  • 选项 A:先发制人的打击(历史选项)

    • 获得对目标国家的 casus_belli:cb_conquer_province(征服省份宣战理由),目标省份为其首都所在省份。
    • 目标国家对本国产生 rus_claimed_land(罗斯宣称土地)意见修正。
    • 在目标国家首都投下 antagonism_pressed_claim(被施加宣称)敌对度炸弹,强度为 2。
    • AI 选择权重因子为 1。
  • 选项 B:占领是徒劳的

    • 获得对目标国家的 casus_belli:cb_annex(吞并宣战理由)。
    • 目标国家对本国产生 rus_claimed_land(罗斯宣称土地)意见修正。
    • 在目标国家首都投下 antagonism_pressed_claim(被施加宣称)敌对度炸弹,强度为 2。
    • AI 选择权重因子为 0.5。
  • 选项 C:最好把钱花在整军备战上

    • 获得 army_tradition_mild_bonus(陆军传统小幅增益)。
    • 损失 3 倍规模的金币。
    • 显示自定义提示 flavor_mos.39.tt1
    • AI 选择权重因子为 0.5。

背景介绍: 在15世纪末至16世纪中叶,莫斯科大公国(以及后来的俄罗斯沙皇国)在其南部边境持续面临着来自克里米亚汗国的严重威胁。克里米亚鞑靼人以其高效的草原骑兵和奴隶劫掠战术而闻名,他们频繁袭击罗斯的城镇和乡村,掳掠人口并破坏经济。这一事件模拟了莫斯科统治者面对拥有先进劫掠科技的克里米亚邻国时所面临的外交与军事抉择压力,反映了这一时期东欧草原边境地带的紧张局势与冲突模式。

完整事件代码

flavor_mos.39 = {
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
	title = flavor_mos.39.title
	desc = flavor_mos.39.desc

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1482.1.1
		to = 1542.1.1
		monthly_chance = 1
	}

	trigger = {

		any_neighbor_country ?= {
			culture = culture:crimean
			NOT = { is_allied_with = { target = root } }
			has_advance = steppe_slave_raiding
		}
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

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

		random_neighbor_country = {
			limit = {
				culture = culture:crimean
				NOT = { is_allied_with = { target = root } }
				has_advance = steppe_slave_raiding
			}
			save_scope_as = target_country
		}
		scope:target_country = {
			capital = {
				save_scope_as = target_location
			}
			ruler = {
				save_scope_as = target_character
			}
		}

		root = { save_scope_as = target_root_country }
	}

	#A preemptive strike.
	option = {
		name = flavor_mos.39.a
		historical_option = yes

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

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

		drop_antagonism_bomb = {
			target = scope:target_country.capital
			modifier = antagonism_pressed_claim
			value = 2
		}

		ai_chance = {
			factor = 1
		}
	}

	#An occupation is futile.
	option = {
		name = flavor_mos.39.b

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

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

		drop_antagonism_bomb = {
			target = scope:target_country.capital
			modifier = antagonism_pressed_claim
			value = 2
		}

		ai_chance = {
			factor = 0.5
		}
	}

	#Better spent on preparing our forces.
	option = {
		name = flavor_mos.39.c

		add_army_tradition = army_tradition_mild_bonus

		change_gold_effect = { scale = -3 }

		custom_tooltip = flavor_mos.39.tt1

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.39.historical_info

}